From ab7b0c7afd5edcca5a36b1e50198ab4e6f8a1687 Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Fri, 16 Jan 2026 11:28:48 -0800 Subject: [PATCH 01/46] adding estimation configs --- .vscode/launch.json | 14 ++ resident/configs_estimation/estimation.yaml | 109 ++++++++++++++ resident/configs_estimation/logging.yaml | 59 ++++++++ resident/configs_estimation/settings.yaml | 148 ++++++++++++++++++++ 4 files changed, 330 insertions(+) create mode 100644 resident/configs_estimation/estimation.yaml create mode 100644 resident/configs_estimation/logging.yaml create mode 100644 resident/configs_estimation/settings.yaml diff --git a/.vscode/launch.json b/.vscode/launch.json index daa9893..cefdd83 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,20 @@ "-o", "outputs/full", ] }, + { + "name": "Run Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/metro/data_full", + "-o", "outputs/estimation", + ] + }, { "name": "Run Cropped Example", "type": "debugpy", diff --git a/resident/configs_estimation/estimation.yaml b/resident/configs_estimation/estimation.yaml new file mode 100644 index 0000000..621e231 --- /dev/null +++ b/resident/configs_estimation/estimation.yaml @@ -0,0 +1,109 @@ +EDB_FILETYPE: parquet # options: csv, pkl, parquet +DELETE_MP_SUBDIRS: True + +enable: True + +bundles: + - license_holding_status + - bike_comfort + - auto_ownership + - work_from_home + - external_worker_identification + - external_workplace_location + - school_location + - workplace_location + - vehicle_type_choice + - transit_pass_subsidy + - transit_pass_ownership + - free_parking + - telecommute_frequency + - cdap + - mandatory_tour_frequency + - mandatory_tour_scheduling_work + - mandatory_tour_scheduling_school + - mandatory_tour_scheduling_univ + - school_escorting + - joint_tour_frequency_composition + - external_joint_tour_identification + - joint_tour_participation + - joint_tour_destination + - joint_tour_scheduling + - non_mandatory_tour_frequency + - external_non_mandatory_identification + - external_non_mandatory_destination + - non_mandatory_tour_destination + - non_mandatory_tour_scheduling + - vehicle_allocation + # - park_and_ride_lot_choice + - tour_mode_choice + - atwork_subtour_frequency + - atwork_subtour_destination + - atwork_subtour_scheduling + - atwork_subtour_mode_choice + - stop_frequency + - trip_purpose + - trip_destination + - trip_scheduling + - trip_mode_choice + +# - atwork_subtour_mode_choice subtours.tour_mode + +survey_tables: + households: + file_name: override_households.csv + index_col: household_id + persons: + file_name: override_persons.csv + index_col: person_id + tours: + file_name: override_tours.csv + index_col: tour_id + joint_tour_participants: + file_name: override_joint_tour_participants.csv + index_col: participant_id + trips: + file_name: override_trips.csv + index_col: trip_id + +estimation_table_types: + license_holding_status: simple_simulate + bike_comfort: simple_simulate + work_from_home: simple_simulate + external_worker_identification: simple_simulate + external_workplace_location: interaction_sample_simulate + school_location: interaction_sample_simulate + workplace_location: interaction_sample_simulate + transit_pass_subsidy: simple_simulate + transit_pass_ownership: simple_simulate + auto_ownership: simple_simulate + vehicle_type_choice: interaction_simulate + transponder_ownership: simple_simulate + free_parking: simple_simulate + telecommute_frequency: simple_simulate + cdap: cdap_simulate + mandatory_tour_frequency: simple_simulate + mandatory_tour_scheduling_work: interaction_sample_simulate + mandatory_tour_scheduling_school: interaction_sample_simulate + mandatory_tour_scheduling_univ: interaction_sample_simulate + school_escorting: interaction_simulate + joint_tour_frequency_composition: interaction_simulate + external_joint_tour_identification: simple_simulate + joint_tour_participation: simple_simulate + joint_tour_destination: interaction_sample_simulate + joint_tour_scheduling: interaction_sample_simulate + non_mandatory_tour_frequency: interaction_simulate + external_non_mandatory_identification: simple_simulate + non_mandatory_tour_destination: interaction_sample_simulate + external_non_mandatory_destination: interaction_sample_simulate + non_mandatory_tour_scheduling: interaction_sample_simulate + vehicle_allocation: simple_simulate + tour_mode_choice: simple_simulate + atwork_subtour_frequency: simple_simulate + atwork_subtour_destination: interaction_sample_simulate + atwork_subtour_scheduling: interaction_sample_simulate + atwork_subtour_mode_choice: simple_simulate + stop_frequency: simple_simulate + trip_purpose: simple_probabilistic + trip_destination: interaction_sample_simulate + trip_scheduling: simple_probabilistic + trip_mode_choice: simple_simulate diff --git a/resident/configs_estimation/logging.yaml b/resident/configs_estimation/logging.yaml new file mode 100644 index 0000000..5f1f018 --- /dev/null +++ b/resident/configs_estimation/logging.yaml @@ -0,0 +1,59 @@ +# Config for logging +# ------------------ +# See http://docs.python.org/2.7/library/logging.config.html#configuration-dictionary-schema + +logging: + version: 1 + disable_existing_loggers: true + + + # Configuring the default (root) logger is highly recommended + root: + level: NOTSET + handlers: [console] + + loggers: + + activitysim: + level: DEBUG + handlers: [console, logfile] + propagate: false + + sharrow: + level: INFO + handlers: [console, logfile] + propagate: false + + handlers: + + logfile: + class: logging.FileHandler + filename: + get_log_file_path: 'activitysim.log' + mode: w + formatter: fileFormatter + level: NOTSET + + console: + class: logging.StreamHandler + stream: ext://sys.stdout + formatter: elapsedFormatter + level: INFO + + formatters: + + simpleFormatter: + class: logging.Formatter + # format: '%(levelname)s - %(name)s - %(message)s' + format: '%(levelname)s - %(message)s' + datefmt: '%d/%m/%Y %H:%M:%S' + + fileFormatter: + class: logging.Formatter + format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' + datefmt: '%d/%m/%Y %H:%M:%S' + + elapsedFormatter: + (): activitysim.core.tracing.ElapsedTimeFormatter + format: '[{elapsedTime}] {levelname:s}: {message:s}' + style: '{' diff --git a/resident/configs_estimation/settings.yaml b/resident/configs_estimation/settings.yaml new file mode 100644 index 0000000..6d8984b --- /dev/null +++ b/resident/configs_estimation/settings.yaml @@ -0,0 +1,148 @@ + +inherit_settings: True + +# assume enough RAM to not chunk +chunk_training_mode: disabled + +# input tables +# input tables +input_table_list: + - tablename: households + filename: override_households.csv + index_col: household_id + - tablename: persons + filename: override_persons.csv + index_col: person_id + - tablename: land_use + filename: land_use.csv + index_col: zone_id + rename_columns: + MAZ: zone_id + drop_columns: + - i1 + - i2 + - i3 + - i4 + - i5 + - i6 + - i7 + - i8 + - i9 + - hs + - hs_sf + - hs_mf + - hs_mh + - hh_sf + - hh_mf + - hh_mh + - zip09 + - luz_id + +write_raw_tables: False + +fail_fast: True + +use_shadow_pricing: False + +multiprocess: False +num_processes: 10 + +# turn writing of sample_tables on and off for all models +# (if True, tables will be written if DEST_CHOICE_SAMPLE_TABLE_NAME is specified in individual model settings) +want_dest_choice_sample_tables: False + +# number of households to simulate +households_sample_size: 0 + +resume_after: + +models: + ### mp_init_proto_pop (single process) + - transit_lot_connectivity + - initialize_proto_population # Separate step so proto tables can be split for multiprocess. + ### mp_disaggregate_accessibility + - compute_disaggregate_accessibility + ### mp_initialize_hhs (single process) + - initialize_landuse + - initialize_households + ### mp_accessibility + - compute_accessibility + ### mp_households + - license_holding_status + - bike_comfort + - av_ownership + - auto_ownership_simulate + - work_from_home + - external_worker_identification + - external_workplace_location + - school_location + - workplace_location + - vehicle_type_choice + - adjust_auto_operating_cost + - transit_pass_subsidy + - transit_pass_ownership + - free_parking + - telecommute_frequency + - cdap_simulate + - mandatory_tour_frequency + - mandatory_tour_scheduling + - school_escorting + - joint_tour_frequency_composition + - external_joint_tour_identification + - joint_tour_participation + - joint_tour_destination + - external_joint_tour_destination + - joint_tour_scheduling + - non_mandatory_tour_frequency + - external_non_mandatory_identification + - non_mandatory_tour_destination + - external_non_mandatory_destination + - non_mandatory_tour_scheduling + - vehicle_allocation + - park_and_ride_lot_choice + - tour_mode_choice_simulate + - atwork_subtour_frequency + - atwork_subtour_destination + - atwork_subtour_scheduling + - atwork_subtour_mode_choice + - stop_frequency + - trip_purpose + - trip_destination + - trip_purpose_and_destination + - trip_scheduling + - trip_mode_choice + - parking_location + ### mp_summarize (single process) + - write_data_dictionary + - track_skim_usage + - write_trip_matrices + - write_tables + +multiprocess_steps: + - name: mp_init_proto_pop + begin: transit_lot_connectivity + - name: mp_disaggregate_accessibility + num_processes: 10 + begin: compute_disaggregate_accessibility + slice: + tables: + - proto_households + - proto_persons + - proto_tours + - name: mp_initialize_hhs + begin: initialize_landuse + - name: mp_accessibility + begin: compute_accessibility + num_processes: 10 + slice: + tables: + - accessibility + exclude: True # this is needed so landuse (i.e. destinations) doesn't get split + - name: mp_households + begin: license_holding_status + slice: + tables: + - households + - persons + - name: mp_summarize + begin: write_data_dictionary \ No newline at end of file From 75202acdcf8dd81c347cc782adb7244cf2557eb1 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Mon, 26 Jan 2026 11:44:47 -0500 Subject: [PATCH 02/46] Fix school location model spec --- resident/configs/accessibility.yaml | 1 + resident/configs/non_mandatory_tour_destination.yaml | 1 + resident/configs/school_location.csv | 8 ++++---- resident/configs/school_location.yaml | 2 +- .../tour_mode_choice_annotate_choosers_preprocessor.csv | 2 +- .../trip_mode_choice_annotate_trips_preprocessor.csv | 2 +- resident/configs/workplace_location.yaml | 2 +- resident/extensions/external_location_choice.py | 4 ++-- 8 files changed, 12 insertions(+), 10 deletions(-) diff --git a/resident/configs/accessibility.yaml b/resident/configs/accessibility.yaml index 13b96c2..34ba094 100644 --- a/resident/configs/accessibility.yaml +++ b/resident/configs/accessibility.yaml @@ -1,2 +1,3 @@ # columns from land_use table to add to df land_use_columns: ['EMP_RET', 'EMP_TOTAL', 'TOTHHS', 'walk_dist_local_bus'] +explicit_chunk: 0.2 \ No newline at end of file diff --git a/resident/configs/non_mandatory_tour_destination.yaml b/resident/configs/non_mandatory_tour_destination.yaml index f8daa2c..6813065 100644 --- a/resident/configs/non_mandatory_tour_destination.yaml +++ b/resident/configs/non_mandatory_tour_destination.yaml @@ -3,6 +3,7 @@ SPEC: non_mandatory_tour_destination.csv COEFFICIENTS: non_mandatory_tour_destination_coefficients.csv SAMPLE_SIZE: 30 +ESTIMATION_SAMPLE_SIZE: 30 SIZE_TERM_SELECTOR: non_mandatory diff --git a/resident/configs/school_location.csv b/resident/configs/school_location.csv index 3b07c3d..db0940b 100644 --- a/resident/configs/school_location.csv +++ b/resident/configs/school_location.csv @@ -1,7 +1,7 @@ Label,Description,Expression,university,highschool,gradeschool,preschool -local_dist,,"_DIST@skims[('SOV_M_DIST', 'MD')]",1,1,1,1 +local_dist,,"_DIST@skims[('SOV_M_DIST', 'MD')].fillna(0)",1,1,1,1 util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mclogsum_univ,coef_mclogsum_hsch,coef_mclogsum_gs,coef_mclogsum_ps -util_Distance,Distance,@_DIST.clip(upper=50),coef_dist_univ,coef_dist_hsch,coef_dist_gs,coef_dist_ps +util_Distance,Distance,@_DIST.clip(upper=50).fillna(0),coef_dist_univ,coef_dist_hsch,coef_dist_gs,coef_dist_ps util_log_Distance,log_Distance,@np.log(_DIST.clip(upper=50)+1),coef_lndist_univ,coef_zero,coef_zero,coef_lndist_ps util_Distance_squareroot,Squareroot of distance,@_DIST.clip(upper=50)**0.5,coef_sqrtdist_univ,coef_sqrtdist_hsch,coef_sqrtdist_gs,coef_sqrtdist_ps util_Distance_squared,Distance_squared,@_DIST.clip(upper=50)**2,coef_sqrddist_univ,coef_sqrddist_hsch,coef_sqrddist_gs,coef_sqrddist_ps @@ -12,10 +12,10 @@ util_Distance_worker_univ,Distance for a worker_university specific,"@np.where(d util_Distance_largeuniversity_univ,Distance for large university enrollment,"@np.where(df.COLLEGEENROLL>5000, _DIST.clip(upper=50), 0)",coef_univenrol_dist_univ,coef_zero,coef_zero,coef_zero util_Distance _lowincome_prek,Distance - low income,"@np.where(df.income<60000, _DIST.clip(upper=50), 0)",coef_zero,coef_zero,coef_zero,coef_lowincdist_ps util_Distance - age03_prek,Distance - age 0 to 3,"@np.where(df.age<3,_DIST.clip(upper=50),0)",coef_zero,coef_zero,coef_zero,coef_age03dist_ps -util_LoggedSize,Logged Size variable - University specific,@df['size_term'].apply(np.log1p),coef_lnSize,coef_lnSize,coef_lnSize,coef_lnSize +util_LoggedSize,Logged Size variable - University specific,@df['size_term'].fillna(0).apply(np.log1p),coef_lnSize,coef_lnSize,coef_lnSize,coef_lnSize util_no_attractions,no attractions if logged university size is zero,@df['size_term']==0,-999,-999,-999,-999 util_sample_of_corrections_factor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1,1,1,1 -util_sp_utility_adjustment,shadow price utility adjustment,@df['shadow_price_utility_adjustment'],1,1,1 +util_sp_utility_adjustment,shadow price utility adjustment,@df['shadow_price_utility_adjustment'].fillna(0),1,1,1 #,,,,,, util_ABM2calibration_0-1miles,ABM2 calibration_0-1miles,@(_DIST<1),coef_zero,coef_abmcalib_01miles,coef_abmcalib_01miles,coef_abmcalib_01miles util_ABM2calibration_1-2miles,ABM2 calibration_1-2miles,@(_DIST<2) * (_DIST>=1),coef_zero,coef_abmcalib_12miles,coef_abmcalib_12miles,coef_abmcalib_12miles diff --git a/resident/configs/school_location.yaml b/resident/configs/school_location.yaml index 7c3c2b1..6ff92cd 100644 --- a/resident/configs/school_location.yaml +++ b/resident/configs/school_location.yaml @@ -1,5 +1,5 @@ SAMPLE_SIZE: 30 -ESTIMATION_SAMPLE_SIZE: 10 +ESTIMATION_SAMPLE_SIZE: 30 SIMULATE_CHOOSER_COLUMNS: - home_zone_id diff --git a/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv b/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv index eaef019..b6a8802 100644 --- a/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv +++ b/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv @@ -46,7 +46,7 @@ treat tours as work if tour_type not yet decided,tour_type,"df.get('tour_type', population_density calculated in annotate landuse in acres,_origin_density_measure,"reindex(land_use.population_density, df[orig_col_name]) / 640", population_density calculated in annotate landuse in acres,_dest_density_measure,"reindex(land_use.population_density, df[dest_col_name]) / 640", ,origin_density,"pd.cut(_origin_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)", -,dest_density,"pd.cut(_dest_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)", +,dest_density,"pd.cut(_dest_density_measure.fillna(0), bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)", ,origin_zone_taxi_wait_time_mean,"origin_density.map({k: v for k, v in Taxi_waitTime_mean.items()})", ,origin_zone_taxi_wait_time_sd,"origin_density.map({k: v for k, v in Taxi_waitTime_sd.items()})", ,dest_zone_taxi_wait_time_mean,"dest_density.map({k: v for k, v in Taxi_waitTime_mean.items()})", diff --git a/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv b/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv index 5cd5420..698078a 100644 --- a/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv +++ b/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv @@ -47,7 +47,7 @@ Description,Target,Expression household_density calculated in annotate_landuse in acres and is converted to sq miles here,_origin_density_measure,"reindex(land_use.population_density, df[orig_col_name])" employment_density calculated in annotate_landuse in acres and is converted to sq miles here,_dest_density_measure,"reindex(land_use.population_density, df[dest_col_name])" ,origin_density,"pd.cut(_origin_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)" -,dest_density,"pd.cut(_dest_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)" +,dest_density,"pd.cut(_dest_density_measure.fillna(0), bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)" Origin MGRA Dwelling Unit Density,oMGRADUDen,"reindex(land_use.duden,df.origin)" Origin MGRA Employment Density,oMGRAEmpDen,"reindex(land_use.empden,df.origin)" Origin MGRA Total Intersections,oMGRATotInt,"reindex(land_use.totint,df.origin)" diff --git a/resident/configs/workplace_location.yaml b/resident/configs/workplace_location.yaml index 59dcc0b..03a0a94 100644 --- a/resident/configs/workplace_location.yaml +++ b/resident/configs/workplace_location.yaml @@ -1,5 +1,5 @@ SAMPLE_SIZE: 30 -ESTIMATION_SAMPLE_SIZE: 10 +ESTIMATION_SAMPLE_SIZE: 30 SIMULATE_CHOOSER_COLUMNS: - income_segment diff --git a/resident/extensions/external_location_choice.py b/resident/extensions/external_location_choice.py index 0b3ee8e..c5c087b 100644 --- a/resident/extensions/external_location_choice.py +++ b/resident/extensions/external_location_choice.py @@ -57,7 +57,7 @@ def external_school_location( estimator = estimation.manager.begin_estimation(state, "external_school_location") if estimator: - write_estimation_specs(estimator, model_settings, model_settings_file_name) + write_estimation_specs(state, estimator, model_settings, model_settings_file_name) persons_df = iterate_location_choice( state=state, @@ -106,7 +106,7 @@ def external_workplace_location( state, "external_workplace_location" ) if estimator: - write_estimation_specs(estimator, model_settings, model_settings_file_name) + write_estimation_specs(state, estimator, model_settings, model_settings_file_name) persons_df = iterate_location_choice( state=state, From 732eb9682d98c6aadeea235f945a2f5c6ff19aee Mon Sep 17 00:00:00 2001 From: David Hensle Date: Mon, 26 Jan 2026 12:05:36 -0800 Subject: [PATCH 03/46] adding missing occupation segment in wlc --- resident/configs/destination_choice_size_terms.csv | 1 + resident/configs/workplace_location.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index cdfacae..d0f8540 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -6,6 +6,7 @@ workplace,mngt_busi_scic_arts,0,0,0.023150473,0.105478261,0.033921273,0.52058869 workplace,prod_trans_move,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0 workplace,sales_office,0,0,0.011768937,0.051276887,0.174045033,1,0.206618229,0.914135674,0.494698223,0.170534494,0.142953744,0.337702324,0.048183584,0.052183296,0.031177613,0,0,0,0,0,0 workplace,services,0,0,0.03214445,0.013782902,0.002031041,0.064277161,0.007689779,0.04669046,0.477412008,0.145096152,0.403566649,0.565075489,0.264904083,0.154746531,0.079950222,0,0,0,0,0,0 +workplace,missing,0,0,0.03214445,0.013782902,0.002031041,0.064277161,0.007689779,0.04669046,0.477412008,0.145096152,0.403566649,0.565075489,0.264904083,0.154746531,0.079950222,0,0,0,0,0,0 school,preschool,0,0.1888,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0 school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 diff --git a/resident/configs/workplace_location.yaml b/resident/configs/workplace_location.yaml index 03a0a94..9a16bcb 100644 --- a/resident/configs/workplace_location.yaml +++ b/resident/configs/workplace_location.yaml @@ -54,7 +54,6 @@ CHOOSER_SEGMENT_COLUMN_NAME: occupation #income_segment CHOOSER_FILTER_COLUMN_NAME: is_internal_worker # FIXME - these are assigned to persons in annotate_persons. we need a better way to manage this -# FIXME - these are not needed for this model and should be re/factored out SEGMENT_IDS: mngt_busi_scic_arts: mngt_busi_scic_arts services: services @@ -63,6 +62,7 @@ SEGMENT_IDS: prod_trans_move: prod_trans_move constr_maint: constr_maint military: military + missing: missing # used for estimation mode only # work_low: 1 # INCOME_SEGMENT_LOW # work_med: 2 # INCOME_SEGMENT_MED # work_high: 3 # INCOME_SEGMENT_HIGH From 89f1223e750df6e3c7f5d57a0916c198067a6728 Mon Sep 17 00:00:00 2001 From: David Hensle Date: Mon, 26 Jan 2026 12:29:57 -0800 Subject: [PATCH 04/46] adding missing occup to shadow pricing --- resident/configs/shadow_pricing.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/resident/configs/shadow_pricing.yaml b/resident/configs/shadow_pricing.yaml index 6321c95..39acbf5 100644 --- a/resident/configs/shadow_pricing.yaml +++ b/resident/configs/shadow_pricing.yaml @@ -47,4 +47,5 @@ workplace_segmentation_targets: prod_trans_move: EMP_TOTAL sales_office: EMP_TOTAL services: EMP_TOTAL + missing: EMP_TOTAL From becafb234343b97eaf23b61408447dca680fa683 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 4 Feb 2026 16:53:20 -0500 Subject: [PATCH 05/46] Remove hard-coded alt # from ext worker ident model --- resident/configs/constants.yaml | 1 - .../external_worker_identification.csv | 30 +++++++++---------- .../external_worker_identification.yaml | 2 ++ .../extensions/external_identification.py | 4 ++- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/resident/configs/constants.yaml b/resident/configs/constants.yaml index 8714b0b..50f40ec 100644 --- a/resident/configs/constants.yaml +++ b/resident/configs/constants.yaml @@ -99,7 +99,6 @@ occupation_xwalk: 5: nat_res_cnstr_maint 6: prod_trans_move 999: missing # no occupation - -1: missing # no occupation # RIDEHAIL Settings Taxi_baseFare: 3.00 diff --git a/resident/configs/external_worker_identification.csv b/resident/configs/external_worker_identification.csv index d70b683..3b31005 100644 --- a/resident/configs/external_worker_identification.csv +++ b/resident/configs/external_worker_identification.csv @@ -1,16 +1,16 @@ -Label,Description,Expression,work_external,work_internal -util_dist_to_nearest_ext_station,Distance to nearest external station,dist_to_external_zone,coef_dist_to_nearest_ext_station, +Label,Description,Expression,work_internal,work_external +util_dist_to_nearest_ext_station,Distance to nearest external station,dist_to_external_zone,,coef_dist_to_nearest_ext_station # FIXME just have a single external indicator not counts at the station here and in destination choice size terms,,,, -#util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.external_work,df.closest_external_zone))",coef_size_of_nearest_ext_station, -util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.EXTERNAL,df.closest_external_zone))",coef_size_of_nearest_ext_station, -util_dist_lt_2p5,Distance less than 2.5 miles,"@np.where(df.dist_to_external_zone<2.5,1,0)",coef_dist_lt_2p5, -util_part_time,Part time worker,"@np.where(df.pemploy == 2,1,0)",coef_part_time, -util_inc_lt15,Household Income less than $15k,@(df.income<15000),coef_inc_lt15, -util_inc_15_25,Household income $15k-$25k,@(df.income>=15000) & (df.income<25000) ,coef_inc_15_25, -util_inc_25_50,Household Income $25k-$50k,@(df.income>=25000) & (df.income<50000) ,coef_inc_25_50, -util_inc_150_250,Household Income $150k-$50k,@(df.income>=150000) * (df.income<250000) ,coef_inc_150_250, -util_inc_250plus,Household Income $250k+,@(df.income>=250000),coef_inc_250plus, -util_asc,Alternative-specific constant for external worker,1,asc_external_worker, -util_global_switch,Global switch to have everything internal,@NO_EXTERNAL,-999, -util_2016,Constant for pre-COVID conditions,@PRE_COVID,asc_external_2016, -util_calib,Constant for calibration,1,0.35, +#util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.external_work,df.closest_external_zone))",,coef_size_of_nearest_ext_station +util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.EXTERNAL,df.closest_external_zone))",,coef_size_of_nearest_ext_station +util_dist_lt_2p5,Distance less than 2.5 miles,"@np.where(df.dist_to_external_zone<2.5,1,0)",,coef_dist_lt_2p5 +util_part_time,Part time worker,"@np.where(df.pemploy == 2,1,0)",,coef_part_time +util_inc_lt15,Household Income less than $15k,@(df.income<15000),,coef_inc_lt15 +util_inc_15_25,Household income $15k-$25k,@(df.income>=15000) & (df.income<25000) ,,coef_inc_15_25 +util_inc_25_50,Household Income $25k-$50k,@(df.income>=25000) & (df.income<50000) ,,coef_inc_25_50 +util_inc_150_250,Household Income $150k-$50k,@(df.income>=150000) * (df.income<250000) ,,coef_inc_150_250 +util_inc_250plus,Household Income $250k+,@(df.income>=250000),,coef_inc_250plus +util_asc,Alternative-specific constant for external worker,1,,asc_external_worker +util_global_switch,Global switch to have everything internal,@NO_EXTERNAL,,-999 +util_2016,Constant for pre-COVID conditions,@PRE_COVID,,asc_external_2016 +util_calib,Constant for calibration,1,,0.35 diff --git a/resident/configs/external_worker_identification.yaml b/resident/configs/external_worker_identification.yaml index e9660b6..fc81619 100644 --- a/resident/configs/external_worker_identification.yaml +++ b/resident/configs/external_worker_identification.yaml @@ -4,6 +4,8 @@ COEFFICIENTS: external_worker_identification_coeffs.csv LOGIT_TYPE: MNL +EXTERNAL_WORKER_ALT: 1 + # boolean column to filter choosers (True means keep) # will only expose these people to the model CHOOSER_FILTER_COLUMN_NAME: is_out_of_home_worker diff --git a/resident/extensions/external_identification.py b/resident/extensions/external_identification.py index 3800a04..2892ab4 100644 --- a/resident/extensions/external_identification.py +++ b/resident/extensions/external_identification.py @@ -38,6 +38,8 @@ class ExternalIdentificationSettings(LogitComponentSettings, extra="forbid"): preprocessor: PreprocessorSettings | None = None + EXTERNAL_WORKER_ALT: int | None = 0 + def determine_closest_external_station( state, choosers, skim_dict, origin_col="home_zone_id" @@ -183,7 +185,7 @@ def external_worker_identification( if external_col_name is not None: persons[external_col_name] = ( - (choices == 0).reindex(persons.index).fillna(False).astype(bool) + (choices == model_settings.EXTERNAL_WORKER_ALT).reindex(persons.index).fillna(False).astype(bool) ) if internal_col_name is not None: persons[internal_col_name] = persons[filter_col] & ~persons[external_col_name] From 22291590a4f6014a04ccc5dd04c19544b0627911 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 10 Feb 2026 12:13:48 -0500 Subject: [PATCH 06/46] Fix jtf composition spec --- resident/configs/annotate_persons.csv | 2 +- resident/configs/disaggregate_accessibility.yaml | 4 ++-- resident/configs/joint_tour_frequency_composition.csv | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resident/configs/annotate_persons.csv b/resident/configs/annotate_persons.csv index 0bc8398..cf6c983 100644 --- a/resident/configs/annotate_persons.csv +++ b/resident/configs/annotate_persons.csv @@ -65,4 +65,4 @@ travel time sensitivity factor for non-work travel,time_factor_nonwork,"np.minim ,naics_code,_naics_code.astype('int') if all(_naics_code!=0) else 0 #,, # FIXME does filling with -1 make sense here? depends on what the missing values mean,, -occupation categories mapped to workplace segments,occupation,persons.OCCP.fillna(-1).map(occupation_xwalk) +occupation categories mapped to workplace segments,occupation,persons.OCCP.fillna(999).map(occupation_xwalk) diff --git a/resident/configs/disaggregate_accessibility.yaml b/resident/configs/disaggregate_accessibility.yaml index e87dbcd..49358e2 100644 --- a/resident/configs/disaggregate_accessibility.yaml +++ b/resident/configs/disaggregate_accessibility.yaml @@ -92,9 +92,9 @@ CREATE_TABLES: 1: "M" 2: "N" # FIXME this should be updated when occupation_xwalk is updated - OCCCAT: # occupation codes + OCCP: # occupation codes 1: 1 # Management Occupations - 2: -1 # Non-worker + 2: 999 # Non-worker PROTO_TOURS: index_col: proto_tour_id diff --git a/resident/configs/joint_tour_frequency_composition.csv b/resident/configs/joint_tour_frequency_composition.csv index 8a1bb7b..be23d9d 100644 --- a/resident/configs/joint_tour_frequency_composition.csv +++ b/resident/configs/joint_tour_frequency_composition.csv @@ -21,7 +21,7 @@ util_constant_for_2_visiting_tour,Constant for 2 visiting tour,@df.social==2,coe util_constant_for_1_visiting_tour,Constant for 1 visiting tour,@df.social==2,coef_constant_for_1_visiting_tour util_1_visiting_and_1_discretionary_tour,1 Visiting and 1 Discretionary Tour,@((df.social==1) & (df.othdiscr==1)),coef_1_visiting_and_1_discretionary_tour util_constant_for_2_discretionary_tour,Constant for 2 discretionary tour,othdiscr==2,coef_constant_for_2_discretionary_tour -util_constant_for_2_discretionary_tour,Constant for 2 discretionary tour,othdiscr==1,coef_constant_for_1_discretionary_tour +util_constant_for_1_discretionary_tour,Constant for 1 discretionary tour,othdiscr==1,coef_constant_for_1_discretionary_tour util_number_of_active_full_time_workers_shopping,Number of Active Full time workers /Shopping,num_travel_active_full_time_workers * shopping,coef_number_of_active_full_time_workers_shopping util_number_of_active_nonworkers_shopping,Number of Active Non-workers /Shopping,num_travel_active_non_workers * shopping,coef_number_of_active_nonworkers_shopping util_number_of_active_pre_driving_age_school_children_shopping,Number of Active Pre- Driving Age School Children /Shopping,num_travel_active_pre_driving_age_school_kids * shopping,coef_number_of_active_pre_driving_age_school_children_shopping From b62c9bec9021ee127c87ccc3b78813f3bb8d5eef Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Mon, 16 Feb 2026 11:43:46 -0500 Subject: [PATCH 07/46] Fix dupl. label in nm tour destination spec --- resident/configs/non_mandatory_tour_destination.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resident/configs/non_mandatory_tour_destination.csv b/resident/configs/non_mandatory_tour_destination.csv index 116360a..754a4db 100644 --- a/resident/configs/non_mandatory_tour_destination.csv +++ b/resident/configs/non_mandatory_tour_destination.csv @@ -71,4 +71,4 @@ util_joint_0_2_ASC,joint tours in 0_2bin calibration constant,"@(_DIST.between(0 util_joint_2_5_ASC,joint tours in 2_5bin calibration constant,"@(_DIST.between(2,5)) * (df.get('tour_category', default=False) == 'joint')",,coef_abm3_dist_2_5jointmaint_asc,coef_abm3_dist_2_5jointdisc_asc,coef_abm3_dist_2_5jointmaint_asc,coef_abm3_dist_2_5jointdisc_asc,coef_abm3_dist_2_5jointdisc_asc util_joint_5_10_ASC,joint tours in 5_10bin calibration constant,"@(_DIST.between(5,10)) * (df.get('tour_category', default=False) == 'joint')",,coef_abm3_dist_5_10jointmaint_asc,coef_abm3_dist_5_10jointdisc_asc,coef_abm3_dist_5_10jointmaint_asc,coef_abm3_dist_5_10jointdisc_asc,coef_abm3_dist_5_10jointdisc_asc util_joint_10_30_ASC,joint tours in 10_30bin calibration constant,"@(_DIST.between(10,30)) * (df.get('tour_category', default=False) == 'joint')",,coef_abm3_dist_10_30jointmaint_asc,coef_abm3_dist_10_30jointdisc_asc,coef_abm3_dist_10_30jointmaint_asc,coef_abm3_dist_10_30jointdisc_asc,coef_abm3_dist_10_30jointdisc_asc -util_indiv_dist_ASC,indiv tours in distance calibration constant,"@(_DIST) * (df.get('tour_category', default=False) == 'joint')",,0.10,,0.10,, \ No newline at end of file +util_joint_dist_ASC,indiv tours in distance calibration constant,"@(_DIST) * (df.get('tour_category', default=False) == 'joint')",,0.10,,0.10,, \ No newline at end of file From 74a57dd08298986f4cf378906cfd10a8e5f75026 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Mon, 16 Feb 2026 17:52:58 -0500 Subject: [PATCH 08/46] updated nm size terms --- resident/configs/destination_choice_size_terms.csv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 17c1fa1..f26f0e5 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -11,10 +11,10 @@ school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -non_mandatory,shopping,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 non_mandatory,othmaint,0,0,0,0,0,0,0,1.60296,0.42255,0.42255,0,0.24001,0,0,0,0,0,0,0,0,0 -non_mandatory,eatout,0.5512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -non_mandatory,social,0.3006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +non_mandatory,eatout,0.5512,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +non_mandatory,social,0.3006,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0.1,0,0,0,0,0,0 non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0 atwork,atwork,0,0,0,0,0,0,0,0.104,0.0145,0,0,0,0,0,0,0,0,0,0,0,0 trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 From 75492fde1292b5505450d7c1e9804ce3f0603fbc Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 17 Feb 2026 17:56:34 -0500 Subject: [PATCH 09/46] ISO timestamp format --- resident/configs/logging.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resident/configs/logging.yaml b/resident/configs/logging.yaml index 71162f1..0843782 100644 --- a/resident/configs/logging.yaml +++ b/resident/configs/logging.yaml @@ -46,12 +46,12 @@ logging: class: logging.Formatter # format: '%(levelname)s - %(name)s - %(message)s' format: '%(levelname)s - %(message)s' - datefmt: '%d/%m/%Y %H:%M:%S' + datefmt: '%Y-%m-%dT%H:%M:%S%:z' fileFormatter: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' - datefmt: '%d/%m/%Y %H:%M:%S' + datefmt: '%Y-%m-%dT%H:%M:%S%:z' elapsedFormatter: (): activitysim.core.tracing.ElapsedTimeFormatter From d23e48311f9abd9d22ead260cf34e2d7cf58b6e5 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 19 Feb 2026 14:32:04 -0500 Subject: [PATCH 10/46] more dest size terms updates --- resident/configs/destination_choice_size_terms.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index f26f0e5..9dcb720 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -12,9 +12,9 @@ school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -non_mandatory,othmaint,0,0,0,0,0,0,0,1.60296,0.42255,0.42255,0,0.24001,0,0,0,0,0,0,0,0,0 +non_mandatory,othmaint,0,0,0,0.1,0,0,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0,0,0,0,0,0,0,0,0 non_mandatory,eatout,0.5512,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -non_mandatory,social,0.3006,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0.1,0,0,0,0,0,0 +non_mandatory,social,0.3006,0,0,0,0,0,0,0.1,0,0.1,0,0,0,0,0.1,0,0,0,0,0,0 non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0 atwork,atwork,0,0,0,0,0,0,0,0.104,0.0145,0,0,0,0,0,0,0,0,0,0,0,0 trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 From 5f1e2a578c5bc4c7669b815eae996d39de2dc2f4 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 19 Feb 2026 14:51:25 -0500 Subject: [PATCH 11/46] update trace label for Ext NMT Ident --- resident/extensions/external_identification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resident/extensions/external_identification.py b/resident/extensions/external_identification.py index 2892ab4..2a99e2b 100644 --- a/resident/extensions/external_identification.py +++ b/resident/extensions/external_identification.py @@ -306,7 +306,7 @@ def external_non_mandatory_identification( network_los: los.Network_LOS, model_settings: ExternalIdentificationSettings | None = None, model_settings_file_name: str = "external_non_mandatory_identification.yaml", - trace_label: str = "external_non_mandatory_identification", + trace_label: str = "external_non_mandatory_tour_identification", trace_hh_id: bool = False, ) -> None: """ From 2b2e4ce4cbf6826d6c3ad1a00895ffdca9ffb998 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 19 Feb 2026 17:29:55 -0500 Subject: [PATCH 12/46] Destination choice size terms made nonzero --- resident/configs/destination_choice_size_terms.csv | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 9dcb720..1de8e16 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -11,12 +11,12 @@ school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -non_mandatory,othmaint,0,0,0,0.1,0,0,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0,0,0,0,0,0,0,0,0 -non_mandatory,eatout,0.5512,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -non_mandatory,social,0.3006,0,0,0,0,0,0,0.1,0,0.1,0,0,0,0,0.1,0,0,0,0,0,0 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0,0 +non_mandatory,othmaint,0,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0,0 +non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0,0 +non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0 non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0 -atwork,atwork,0,0,0,0,0,0,0,0.104,0.0145,0,0,0,0,0,0,0,0,0,0,0,0 +atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0 trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0,0 From 867f5baf6db7075a953567d3f43807fdf48cd7be Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:10:31 -0800 Subject: [PATCH 13/46] preprocessor adds TAZ column to landuse --- resident/preprocessor.py | 68 +++++++++++++++++++++++++--------------- 1 file changed, 43 insertions(+), 25 deletions(-) diff --git a/resident/preprocessor.py b/resident/preprocessor.py index aea9f1b..12a4699 100644 --- a/resident/preprocessor.py +++ b/resident/preprocessor.py @@ -67,47 +67,65 @@ def load_data(settings: PreprocessorSettings) -> tuple[pd.DataFrame, pd.DataFram def set_land_use_maz_index(land_use: pd.DataFrame) -> pd.DataFrame: - """Infer the MAZ column, rename it to 'MAZ', and set it as the index. + """Infer the MAZ and TAZ columns, rename them, and set MAZ as the index. Searches for common MAZ column name variations (MAZ, MAZ_ID, MAZ_NO) - and standardizes to 'MAZ' as the DataFrame index. + and TAZ column name variations (TAZ, TAZ_ID, TAZ_NO), standardizes + their names to 'MAZ' and 'TAZ', and sets 'MAZ' as the DataFrame index. Parameters ---------- land_use : pd.DataFrame - Land use table with an MAZ-like column + Land use table with MAZ-like and optionally TAZ-like columns Returns ------- pd.DataFrame - Land use table with 'MAZ' as the index + Land use table with 'MAZ' as the index and 'TAZ' column renamed """ + # --- MAZ --- # If MAZ is already the index, just ensure the name - if land_use.index.name and land_use.index.name.upper() in ['MAZ', 'MAZ_ID', 'MAZ_NO']: + if land_use.index.name and land_use.index.name == 'MAZ': land_use.index.name = 'MAZ' print("land_use index already set to MAZ") - return land_use - - # Search for a MAZ-like column - maz_col = None - for col in land_use.columns: - if col.upper() in ['MAZ', 'MAZ_ID', 'MAZ_NO']: - maz_col = col - break - - if maz_col is None: - raise RuntimeError( - f"Could not identify MAZ column in land_use. " - f"Available columns: {list(land_use.columns)}" - ) + else: + # Search for a MAZ-like column + maz_col = None + for col in land_use.columns: + if col.upper() in ['MAZ', 'MAZ_ID', 'MAZ_NO']: + maz_col = col + break + + if maz_col is None: + raise RuntimeError( + f"Could not identify MAZ column in land_use. " + f"Available columns: {list(land_use.columns)}" + ) + + # Rename to 'MAZ' if needed, then set as index + if maz_col != 'MAZ': + land_use = land_use.rename(columns={maz_col: 'MAZ'}) + print(f"Renamed land_use column '{maz_col}' to 'MAZ'") + + land_use = land_use.set_index('MAZ') + print(f"Set land_use index to 'MAZ' ({len(land_use)} zones)") - # Rename to 'MAZ' if needed, then set as index - if maz_col != 'MAZ': - land_use = land_use.rename(columns={maz_col: 'MAZ'}) - print(f"Renamed land_use column '{maz_col}' to 'MAZ'") + # --- TAZ --- + if 'TAZ' in land_use.columns: + print("TAZ column already exists in land_use") + else: + taz_col = None + for col in land_use.columns: + if col.upper() in ['TAZ', 'TAZ_ID', 'TAZ_NO']: + taz_col = col + break + + if taz_col is None: + print("Warning: Could not identify TAZ column in land_use, skipping TAZ rename") + else: + land_use = land_use.rename(columns={taz_col: 'TAZ'}) + print(f"Renamed land_use column '{taz_col}' to 'TAZ'") - land_use = land_use.set_index('MAZ') - print(f"Set land_use index to 'MAZ' ({len(land_use)} zones)") return land_use From d97f584d075d26c366164dfbc7e300d9b2dbc152 Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Mon, 23 Feb 2026 00:00:11 -0800 Subject: [PATCH 14/46] fixing logging file --- resident/configs_estimation/logging.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resident/configs_estimation/logging.yaml b/resident/configs_estimation/logging.yaml index 5f1f018..4b09907 100644 --- a/resident/configs_estimation/logging.yaml +++ b/resident/configs_estimation/logging.yaml @@ -15,7 +15,7 @@ logging: loggers: activitysim: - level: DEBUG + level: INFO handlers: [console, logfile] propagate: false @@ -57,3 +57,4 @@ logging: (): activitysim.core.tracing.ElapsedTimeFormatter format: '[{elapsedTime}] {levelname:s}: {message:s}' style: '{' + datefmt: '%d/%m/%Y %H:%M:%S' \ No newline at end of file From 290af20af5e6cf3997eb823aaf5a319649b6511c Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Mon, 23 Feb 2026 00:00:47 -0800 Subject: [PATCH 15/46] active acres size term --- resident/configs/annotate_landuse.csv | 2 +- .../configs/destination_choice_size_terms.csv | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/resident/configs/annotate_landuse.csv b/resident/configs/annotate_landuse.csv index 1614376..65fe663 100644 --- a/resident/configs/annotate_landuse.csv +++ b/resident/configs/annotate_landuse.csv @@ -4,10 +4,10 @@ household_density,household_density,land_use.TOTHHS / land_use.ACRES.clip(lower= population_density,population_density,land_use['TOTPOP'] / land_use.ACRES.clip(lower=1) employment_density,employment_density,(land_use['EMP_TOTAL'] / land_use.ACRES.clip(lower=1)).clip(upper=500) density_index,density_index,(household_density * employment_density) / (household_density + employment_density).clip(lower=1) +effective active acres,ACTIVE_ACRES,land_use.ACRES * land_use.PARKATTRACT # FIXME pseudomsa is used in a few places but there is no equivalent in Metro landuse,, ,pseudomsa,0 # FIXME missing in landuse but used in SANDAG -- setting to 0 for now,, -,ACTIVE_ACRES,0 ,micro_dist_local_bus,0 ,microtransit,0 ,nev,0 diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 1de8e16..72f4f83 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -10,19 +10,19 @@ school,preschool,0,0.1888,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0 school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0,0 -non_mandatory,othmaint,0,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0,0 -non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0,0 -non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0 +non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0 +non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0 +non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0 +non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0 non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0 atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0 trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0,0 -trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0,0 -trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0,0 -trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0 +trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0 +trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0 +trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0 +trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0 trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0.05 trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 # not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,, From c5b94ecf6e3700a185d8841c018359a8a876d019 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Mon, 23 Feb 2026 11:08:34 -0500 Subject: [PATCH 16/46] Fix logging config --- resident/configs_estimation/logging.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resident/configs_estimation/logging.yaml b/resident/configs_estimation/logging.yaml index 4b09907..b4923f0 100644 --- a/resident/configs_estimation/logging.yaml +++ b/resident/configs_estimation/logging.yaml @@ -46,15 +46,15 @@ logging: class: logging.Formatter # format: '%(levelname)s - %(name)s - %(message)s' format: '%(levelname)s - %(message)s' - datefmt: '%d/%m/%Y %H:%M:%S' + datefmt: '%Y-%m-%dT%H:%M:%S%:z' fileFormatter: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' - datefmt: '%d/%m/%Y %H:%M:%S' + datefmt: '%Y-%m-%dT%H:%M:%S%:z' elapsedFormatter: (): activitysim.core.tracing.ElapsedTimeFormatter format: '[{elapsedTime}] {levelname:s}: {message:s}' style: '{' - datefmt: '%d/%m/%Y %H:%M:%S' \ No newline at end of file + datefmt: '%Y-%m-%dT%H:%M:%S%:z' \ No newline at end of file From 59682f36e302b2309ef876f8bd003629d8aa4da0 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Mon, 23 Feb 2026 12:28:17 -0500 Subject: [PATCH 17/46] Fix typo in previous commit --- resident/configs_estimation/logging.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resident/configs_estimation/logging.yaml b/resident/configs_estimation/logging.yaml index b4923f0..fd83f2b 100644 --- a/resident/configs_estimation/logging.yaml +++ b/resident/configs_estimation/logging.yaml @@ -46,15 +46,15 @@ logging: class: logging.Formatter # format: '%(levelname)s - %(name)s - %(message)s' format: '%(levelname)s - %(message)s' - datefmt: '%Y-%m-%dT%H:%M:%S%:z' + datefmt: '%Y-%m-%dT%H:%M:%S%z' fileFormatter: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' - datefmt: '%Y-%m-%dT%H:%M:%S%:z' + datefmt: '%Y-%m-%dT%H:%M:%S%z' elapsedFormatter: (): activitysim.core.tracing.ElapsedTimeFormatter format: '[{elapsedTime}] {levelname:s}: {message:s}' style: '{' - datefmt: '%Y-%m-%dT%H:%M:%S%:z' \ No newline at end of file + datefmt: '%Y-%m-%dT%H:%M:%S%z' \ No newline at end of file From 6a3ba217cfb6504e0f08d9793bf25816754dd918 Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Mon, 23 Feb 2026 19:48:19 -0800 Subject: [PATCH 18/46] clean up labels, knr skims for bnr, school trip size terms --- .../configs/destination_choice_size_terms.csv | 1 + resident/configs/trip_destination.csv | 64 ++++---- resident/configs/trip_mode_choice.csv | 149 +++++++++--------- 3 files changed, 110 insertions(+), 104 deletions(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 72f4f83..8bb62cb 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -25,6 +25,7 @@ trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0 trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0 trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0.05 trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0 # not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,, #trip,gradeschool,0,,,,,,,,,,,,,,,,,,,, #trip,highschool,0,,,,,,,,,,,,,,,,,,,, diff --git a/resident/configs/trip_destination.csv b/resident/configs/trip_destination.csv index db222c6..8dfa800 100644 --- a/resident/configs/trip_destination.csv +++ b/resident/configs/trip_destination.csv @@ -10,42 +10,42 @@ util_sizeterm,size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose))",coe util_Sampleofalternativescorrectionfactor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one util_Modechoicelogsum,Mode choice logsum,od_logsum + dp_logsum,coef_mode_choice_logsum_mandatory,coef_mode_choice_logsum_mandatory,coef_mode_choice_logsum_mandatory,coef_mode_choice_logsum_maint,coef_mode_choice_logsum_maint,coef_mode_choice_logsum_maint,coef_mode_choice_logsum_discr,coef_mode_choice_logsum_discr,coef_mode_choice_logsum_discr,coef_mode_choice_logsum_discr #,,,,,,,,,,,, -util_DistanceDeviationLinearRelative,Distance Deviation Linear - Relative,"@np.minimum((_dist_dev)/_op_DIST, 100)",,,,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr -util_DistanceDeviationLinearAbsolute,Distance Deviation Linear - Absolute,@(_dist_dev),coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr +util_dist_dev_LinearRelative,Distance Deviation Linear - Relative,"@np.minimum((_dist_dev)/_op_DIST, 100)",,,,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr +util_dist_dev_LinearAbsolute,Distance Deviation Linear - Absolute,@(_dist_dev),coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr util_LogofDistanceRelativeDeviation,Log of Distance Relative Deviation,"@np.where((_dist_dev > 0), np.log(np.minimum((_dist_dev)/_op_DIST, 100)), 0)",,,,coef_LogofDistanceRelativeDeviation_maint,coef_LogofDistanceRelativeDeviation_maint,coef_LogofDistanceRelativeDeviation_maint,coef_LogofDistanceRelativeDeviation_discr,coef_LogofDistanceRelativeDeviation_discr,coef_LogofDistanceRelativeDeviation_discr,coef_LogofDistanceRelativeDeviation_discr util_LogofDistanceAbsoluteDeviation,Log of Distance Absolute Deviation,"@(_dist_dev_logged)",coef_LogofDistanceAbsoluteDeviation_mandatory,coef_LogofDistanceAbsoluteDeviation_mandatory,coef_LogofDistanceAbsoluteDeviation_mandatory,coef_LogofDistanceAbsoluteDeviation_maint,coef_LogofDistanceAbsoluteDeviation_maint,coef_LogofDistanceAbsoluteDeviation_maint,coef_LogofDistanceAbsoluteDeviation_discr,coef_LogofDistanceAbsoluteDeviation_discr,coef_LogofDistanceAbsoluteDeviation_discr,coef_LogofDistanceAbsoluteDeviation_discr -util_DistanceDeviationsquaredRelative,Distance Deviation squared - Relative,"@np.power(np.minimum((_dist_dev)/_op_DIST, 100),2)",,,,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr -util_DistanceDeviationsquaredAbsolute,Distance Deviation squared - Absolute,"@np.power(_dist_dev,2)",coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr -util_DistanceDeviation2ndstopofhalftour,Distance Deviation - 2nd stop of half tour,@(df.trip_num==2) * (_dist_dev),coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr -util_DistanceDeviation3rdmorestoponhalftour,Distance Deviation - 3rd+ stop on half tour,@(df.trip_num>2) * (_dist_dev),coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr -util_DistanceDeviationNumberofStopsonthehalftour,Distance Deviation - Number of Stops on the half-tour,"@np.minimum(_dist_dev,7.0)*df.trip_count",coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr -util_DistanceDeviationwalkbiketour,Distance Deviation - walk/bike tour,nonmotorTour * (_dist_dev),coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr -util_DistanceDeviationworkstoppurpose,Distance Deviation - work stop purpose,workStop *_dist_dev,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr -util_DistanceDeviationuniversitystoppurpose,Distance Deviation - university stop purpose,"@df.univStop * np.minimum(_dist_dev,5.0)",coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr -util_DistanceDeviationmaintenancestoppurpose,Distance Deviation - maintenance stop purpose,othmainStop * _dist_dev,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr -util_DistanceDeviationdiscretionarystoppurpose,Distance Deviation - discretionary stop purpose,"@df.discStop * np.minimum(_dist_dev,8.0)",coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr -util_DistanceDeviationshoppingstoppurpose,Distance Deviation - shopping stop purpose,shopStop *_dist_dev,,,,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr -util_DistanceDeviationeatoutstoppurpose,Distance Deviation - eatout stop purpose,eatStop *_dist_dev,,,,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr -util_DistanceDeviationsocialstoppurpose,Distance Deviation - social stop purpose,socStop * _dist_dev,,,,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr -util_DistanceDeviationworkstoppurpose_log,Distance Deviation - work stop purpose,workStop * _dist_dev_logged,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,,,,,,, -util_DistanceDeviationshoppingstoppurpose_log,Distance Deviation - shopping stop purpose,shopStop * _dist_dev_logged,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,,,,,,, -util_DistanceDeviationsocialvisitingstoppurpose_log,Distance Deviation - socialvisiting stop purpose,socStop * _dist_dev_logged,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,,,,,,, -util_DistanceDeviationSchool,Distance Deviation - School Tour purpose,schoolTour * _dist_dev,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,,,,,,, -util_DistanceDeviationUniversity,Distance Deviation - University Tour purpose,univTour * _dist_dev,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,,,,,,, -util_DistanceDeviationShopping,Distance Deviation - Shopping Tour purpose,shopTour * _dist_dev,,,,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,,,, -util_DistanceDeviationOthMaint,Distance Deviation - Other maintenanceTour purpose,othmainTour * _dist_dev,,,,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,,,, -util_DistanceDeviationDiscr,Distance Deviation - DiscTour purpose,discTour * _dist_dev,,,,,,,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint -util_DistanceDeviationAtwork,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,,,,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint -util_DistanceDeviationIncomeLessthan60k,"Distance Deviation - Income Less than $60,000","@(df.income_trips<60000) * np.minimum(_dist_dev,13.0)",coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr -util_DistanceDeviationFemale,Distance Deviation - Female,(female & (is_joint==0)) * (_dist_dev),coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr -util_DistanceDeviationAgebetween35and54years,Distance Deviation - Age between 35 and 54 years,"@(df.age_trips.between(35,54)*df.is_joint==0) * (_dist_dev)",coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr -util_DistanceDeviationAgeover54years,Distance Deviation - Age over 54 years,@(df.age_trips>54) * (df.is_joint==0) * (_dist_dev),coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr +util_dist_dev_squaredRelative,Distance Deviation squared - Relative,"@np.power(np.minimum((_dist_dev)/_op_DIST, 100),2)",,,,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr +util_dist_dev_squaredAbsolute,Distance Deviation squared - Absolute,"@np.power(_dist_dev,2)",coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr +util_dist_dev_2ndstopofhalftour,Distance Deviation - 2nd stop of half tour,@(df.trip_num==2) * (_dist_dev),coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr +util_dist_dev_3rdmorestoponhalftour,Distance Deviation - 3rd+ stop on half tour,@(df.trip_num>2) * (_dist_dev),coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr +util_dist_dev_NumberofStopsonthehalftour,Distance Deviation - Number of Stops on the half-tour,"@np.minimum(_dist_dev,7.0)*df.trip_count",coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr +util_dist_dev_walkbiketour,Distance Deviation - walk/bike tour,nonmotorTour * (_dist_dev),coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr +util_dist_dev_workstoppurpose,Distance Deviation - work stop purpose,workStop *_dist_dev,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr +util_dist_dev_universitystoppurpose,Distance Deviation - university stop purpose,"@df.univStop * np.minimum(_dist_dev,5.0)",coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr +util_dist_dev_maintenancestoppurpose,Distance Deviation - maintenance stop purpose,othmainStop * _dist_dev,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr +util_dist_dev_discretionarystoppurpose,Distance Deviation - discretionary stop purpose,"@df.discStop * np.minimum(_dist_dev,8.0)",coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr +util_dist_dev_shoppingstoppurpose,Distance Deviation - shopping stop purpose,shopStop *_dist_dev,,,,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr +util_dist_dev_eatoutstoppurpose,Distance Deviation - eatout stop purpose,eatStop *_dist_dev,,,,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr +util_dist_dev_socialstoppurpose,Distance Deviation - social stop purpose,socStop * _dist_dev,,,,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr +util_dist_dev_workstoppurpose_log,Distance Deviation - work stop purpose,workStop * _dist_dev_logged,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,,,,,,, +util_dist_dev_shoppingstoppurpose_log,Distance Deviation - shopping stop purpose,shopStop * _dist_dev_logged,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,,,,,,, +util_dist_dev_socialvisitingstoppurpose_log,Distance Deviation - socialvisiting stop purpose,socStop * _dist_dev_logged,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,,,,,,, +util_dist_dev_School,Distance Deviation - School Tour purpose,schoolTour * _dist_dev,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,,,,,,, +util_dist_dev_University,Distance Deviation - University Tour purpose,univTour * _dist_dev,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,,,,,,, +util_dist_dev_Shopping,Distance Deviation - Shopping Tour purpose,shopTour * _dist_dev,,,,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,,,, +util_dist_dev_OthMaint,Distance Deviation - Other maintenanceTour purpose,othmainTour * _dist_dev,,,,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,,,, +util_dist_dev_Maint,Distance Deviation - Maint purpose,othmainTour * _dist_dev,,,,,,,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint +util_dist_dev_Atwork,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,,,,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint +util_dist_dev_IncomeLessthan60k,"Distance Deviation - Income Less than $60,000","@(df.income_trips<60000) * np.minimum(_dist_dev,13.0)",coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr +util_dist_dev_Female,Distance Deviation - Female,(female & (is_joint==0)) * (_dist_dev),coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr +util_dist_dev_Agebetween35and54years,Distance Deviation - Age between 35 and 54 years,"@(df.age_trips.between(35,54)*df.is_joint==0) * (_dist_dev)",coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr +util_dist_dev_Ageover54years,Distance Deviation - Age over 54 years,@(df.age_trips>54) * (df.is_joint==0) * (_dist_dev),coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr util_DistanceRatio,Distance Ratio,(_nd_DIST)/ (_nd_DIST + _dp_DIST),coef_DistanceRatio_mandatory,coef_DistanceRatio_mandatory,coef_DistanceRatio_mandatory,coef_DistanceRatio_maint,coef_DistanceRatio_maint,coef_DistanceRatio_maint,coef_DistanceRatio_discr,coef_DistanceRatio_discr,coef_DistanceRatio_discr,coef_DistanceRatio_discr util_DistanceRatioFirstOutboundStop,Distance Ratio - First Outbound Stop,@(df.trip_num==1)*(df.outbound) * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioFirstOutboundStop_mandatory,coef_DistanceRatioFirstOutboundStop_mandatory,coef_DistanceRatioFirstOutboundStop_mandatory,coef_DistanceRatioFirstOutboundStop_maint,coef_DistanceRatioFirstOutboundStop_maint,coef_DistanceRatioFirstOutboundStop_maint,coef_DistanceRatioFirstOutboundStop_discr,coef_DistanceRatioFirstOutboundStop_discr,coef_DistanceRatioFirstOutboundStop_discr,coef_DistanceRatioFirstOutboundStop_discr util_DistanceRatioFirstInboundStop,Distance Ratio - First Inbound Stop,@(df.trip_num==1)*(df.outbound==0) * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioFirstInboundStop_mandatory,coef_DistanceRatioFirstInboundStop_mandatory,coef_DistanceRatioFirstInboundStop_mandatory,coef_DistanceRatioFirstInboundStop_maint,coef_DistanceRatioFirstInboundStop_maint,coef_DistanceRatioFirstInboundStop_maint,coef_DistanceRatioFirstInboundStop_discr,coef_DistanceRatioFirstInboundStop_discr,coef_DistanceRatioFirstInboundStop_discr,coef_DistanceRatioFirstInboundStop_discr util_DistanceRatioMandatoryOutboundTour,Distance Ratio - Mandatory Outbound Tour,(outbound)* mandTour * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioMandatoryOutboundTour_mandatory,coef_DistanceRatioMandatoryOutboundTour_mandatory,coef_DistanceRatioMandatoryOutboundTour_mandatory,,,,,,, util_DistanceRatioMandatoryInboundTour,Distance Ratio - Mandatory Inbound Tour,(outbound==0) * mandTour * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioMandatoryInboundTour_mandatory,coef_DistanceRatioMandatoryInboundTour_mandatory,coef_DistanceRatioMandatoryInboundTour_mandatory,,,,,,, -util_DistanceDeviationSquareWork,Distance Deviation Square - Work Tour purpose,"@df.workTour * np.power(_dist_dev,2)",coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,,,,,,, -util_DistanceDeviationSocial,Distance Deviation SocialTour purpose,socTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr -util_DistanceDeviationDiscr,Distance Deviation DiscrTour purpose,discTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr -util_DistanceDeviationAtwork_calibration,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib +util_dist_dev_SquareWork,Distance Deviation Square - Work Tour purpose,"@df.workTour * np.power(_dist_dev,2)",coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,,,,,,, +util_dist_dev_Social,Distance Deviation SocialTour purpose,socTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr +util_dist_dev_Discr,Distance Deviation DiscrTour purpose,discTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr +util_dist_dev_Atwork_calibration,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib diff --git a/resident/configs/trip_mode_choice.csv b/resident/configs/trip_mode_choice.csv index 944c9bf..cffa555 100644 --- a/resident/configs/trip_mode_choice.csv +++ b/resident/configs/trip_mode_choice.csv @@ -1,48 +1,48 @@ Label,Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_TRANSIT,PNR_TRANSIT,KNR_TRANSIT,BIKE_TRANSIT,TAXI,TNC_SINGLE,TNC_SHARED,SCH_BUS,EBIKE,ESCOOTER #,Drive alone,,,,,,,,,,,,,,,, util_DRIVEALONEFREE_Unavailable,Drive alone - Unavailable,sov_available == False,-999,,,,,,,,,,,,,, -util_Drive alone - In-vehicle time,Drive alone - In-vehicle time,(da_time_skims) * autoIVTFactor * time_factor,coef_ivt,,,,,,,,,,,,,, -util_Drive alone - cost,Drive alone - cost,"@(df.auto_op_cost * df.autoCPMFactor * df.da_dist_skims + df.da_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, -util_Drive alone - Parking cost ,Drive alone - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, -util_Drive alone - Terminal Time,Drive alone - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,coef_acctime,,,,,,,,,,,,,, +util_Drive_alone_In_vehicle_time,Drive alone - In-vehicle time,(da_time_skims) * autoIVTFactor * time_factor,coef_ivt,,,,,,,,,,,,,, +util_Drive_alone_cost,Drive alone - cost,"@(df.auto_op_cost * df.autoCPMFactor * df.da_dist_skims + df.da_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Parking_cost,Drive alone - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Terminal_Time,Drive alone - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,coef_acctime,,,,,,,,,,,,,, #,Shared ride2,,,,,,,,,,,,,,,, util_sr2_available,sr2 available,sr2_available == False,,-999,,,,,,,,,,,,, util_sr2_tourbike_disadvantage,sr2 tourbike disadvantage,tourBike,,-30,,,,,,,,,,,,, -util_Shared ride 2 - In -vehicle time,Shared ride 2 - In -vehicle time,(s2_time_skims) * autoIVTFactor * time_factor,,coef_ivt,,,,,,,,,,,,, -util_Shared ride 2 - cost,Shared ride 2 - cost,"@((df.auto_op_cost * df.autoCPMFactor * df.s2_dist_skims) + df.s2_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, -util_Shared ride 2 - Parking cost ,Shared ride 2 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS2))*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, -util_Shared ride 2 Terminal Time - acc,Shared ride 2 - Terminal Time ,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,coef_acctime,,,,,,,,,,,,, -util_Shared ride 2 _Two_person_household,Shared ride 2 - Two person household,@(df.hhsize == 2),,coef_size2_sr2,,,,,,,,,,,,, -util_Shared ride 2 _Three_person_household,Shared ride 2 - Three person household,@(df.hhsize == 3),,coef_size3_sr2,,,,,,,,,,,,, -util_Shared ride 2 _Four+_person_household,Shared ride 2 - Four plus person household,@(df.hhsize > 3),,coef_size4p_sr2,,,,,,,,,,,,, -util_Shared ride 2 - Female,Shared ride 2 - female,@(df.female == 1),,coef_female_sr2,,,,,,,,,,,,, +util_Shared_ride_2_In_vehicle_time,Shared ride 2 - In -vehicle time,(s2_time_skims) * autoIVTFactor * time_factor,,coef_ivt,,,,,,,,,,,,, +util_Shared_ride_2_cost,Shared ride 2 - cost,"@((df.auto_op_cost * df.autoCPMFactor * df.s2_dist_skims) + df.s2_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Parking_cost,Shared ride 2 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS2))*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Terminal_Time,Shared ride 2 - Terminal Time ,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,coef_acctime,,,,,,,,,,,,, +util_Shared_ride_2_Two_person_household,Shared ride 2 - Two person household,@(df.hhsize == 2),,coef_size2_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Three_person_household,Shared ride 2 - Three person household,@(df.hhsize == 3),,coef_size3_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Four_plus_person_household,Shared ride 2 - Four plus person household,@(df.hhsize > 3),,coef_size4p_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Female,Shared ride 2 - female,@(df.female == 1),,coef_female_sr2,,,,,,,,,,,,, #,Shared ride 3,,,,,,,,,,,,,,,, util_sr3_available,sr3 available,sr3_available == False,,,-999,,,,,,,,,,,, util_sr3_tourbike_disadvantage,sr3 tourbike disadvantage,tourBike,,,-30,,,,,,,,,,,, -util_Shared ride 3 - In -vehicle time,Shared ride 3 - In -vehicle time,(s3_time_skims) * autoIVTFactor * time_factor,,,coef_ivt,,,,,,,,,,,, -util_Shared ride 3 - Cost ,Shared ride 3 - cost,"@(df.auto_op_cost * df.s3_dist_skims * df.autoCPMFactor + df.s3_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, -util_Shared ride 3 - Parking cost ,Shared ride 3 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS3))*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, -util_Shared ride 3 - Terminal Time,Shared ride 3 - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,,coef_acctime,,,,,,,,,,,, -util_Shared ride 3 - Two_person_household,Shared ride 3 - Two person household,@(df.hhsize == 2),,,coef_size2_sr3p,,,,,,,,,,,, -util_Shared ride 3 - Three_person_household,Shared ride 3 - Three person household,@(df.hhsize == 3),,,coef_size3_sr3p,,,,,,,,,,,, -util_Shared ride 3 - Four+_person_household,Shared ride 3 - Four plus person household,@(df.hhsize > 3),,,coef_size4p_sr3p,,,,,,,,,,,, -util_Shared ride 3 - Female,Shared ride 3 - female,@(df.female == 1),,,coef_female_sr3p,,,,,,,,,,,, +util_Shared_ride_3_In_vehicle_time,Shared ride 3 - In -vehicle time,(s3_time_skims) * autoIVTFactor * time_factor,,,coef_ivt,,,,,,,,,,,, +util_Shared_ride_3_Cost,Shared ride 3 - cost,"@(df.auto_op_cost * df.s3_dist_skims * df.autoCPMFactor + df.s3_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Parking_cost,Shared ride 3 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS3))*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Terminal_Time,Shared ride 3 - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,,coef_acctime,,,,,,,,,,,, +util_Shared_ride_3_Two_person_household,Shared ride 3 - Two person household,@(df.hhsize == 2),,,coef_size2_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Three_person_household,Shared ride 3 - Three person household,@(df.hhsize == 3),,,coef_size3_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Four_plus_person_household,Shared ride 3 - Four plus person household,@(df.hhsize > 3),,,coef_size4p_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Female,Shared ride 3 - female,@(df.female == 1),,,coef_female_sr3p,,,,,,,,,,,, #,Walk,,,,,,,,,,,,,,,, #,school escorting can force longer walk trips so not turning off completely if walk tour,,,,,,,,,,,,,,,, -util_Walk - Unavailable,Walk - Unavailable,(walkAvailable == 0) & (tourWalk == 0),,,,-999,,,,,,,,,,, -util_Walk - Unavailable - walkTour,Walk - Unavailable - Walk Tour,(walkAvailable == 0) & (tourWalk == 1),,,,-20,,,,,,,,,,, -util_Walk - Female,Walk - Female,@df.female,,,,coef_female_nmot,,,,,,,,,,, -util_Walk - time,Walk - time - clipped for really long walk trips to avoid zero probs,@(df.walk_time_skims * df.time_factor).clip(upper=1000),,,,coef_walkTime,,,,,,,,,,, -util_Walk - Origin Mix,Walk - Origin Mix,oMGRAMix,,,,coef_oMix_nmot,,,,,,,,,,, -util_Walk - Origin Intersection Density,Walk - Origin Intersection Density,oMGRATotInt,,,,coef_oIntDen_nmot,,,,,,,,,,, -util_Walk - Destination Employment Density,Walk - Destination Employment Density,dMGRAEmpDen,,,,coef_dEmpDen_nmot,,,,,,,,,,, -util_Walk - Age 1-5 (school only),Walk - Age 1-6,"@df.age.between(1,5)",,,,coef_age1to5_nmot,,,,,,,,,,, -util_Walk - Age 6-12 (school only),Walk - Age 6-13,"@df.age.between(6,12)",,,,coef_age6to12_nmot,,,,,,,,,,, -util_Walk - Age 13-15 (school only),Walk - Age 13-16,"@df.age.between(13,15)",,,,coef_age13to15_nmot,,,,,,,,,,, +util_Walk_Unavailable,Walk - Unavailable,(walkAvailable == 0) & (tourWalk == 0),,,,-999,,,,,,,,,,, +util_Walk_Unavailable_walkTour,Walk - Unavailable - Walk Tour,(walkAvailable == 0) & (tourWalk == 1),,,,-20,,,,,,,,,,, +util_Walk_Female,Walk - Female,@df.female,,,,coef_female_nmot,,,,,,,,,,, +util_Walk_time,Walk - time - clipped for really long walk trips to avoid zero probs,@(df.walk_time_skims * df.time_factor).clip(upper=1000),,,,coef_walkTime,,,,,,,,,,, +util_Walk_Origin_Mix,Walk - Origin Mix,oMGRAMix,,,,coef_oMix_nmot,,,,,,,,,,, +util_Walk_Origin_Intersection_Density,Walk - Origin Intersection Density,oMGRATotInt,,,,coef_oIntDen_nmot,,,,,,,,,,, +util_Walk_Destination_Employment_Density,Walk - Destination Employment Density,dMGRAEmpDen,,,,coef_dEmpDen_nmot,,,,,,,,,,, +util_Walk_Age_1_5,Walk - Age 1-6,"@df.age.between(1,5)",,,,coef_age1to5_nmot,,,,,,,,,,, +util_Walk_Age_6_12,Walk - Age 6-13,"@df.age.between(6,12)",,,,coef_age6to12_nmot,,,,,,,,,,, +util_Walk_Age_13_15,Walk - Age 13-16,"@df.age.between(13,15)",,,,coef_age13to15_nmot,,,,,,,,,,, #,Bike,,,,,,,,,,,,,,,, -util_BIKE_Mode unavailable,Bike - Mode unavailable unless on bike tour,@(df.tourBike == 0)|(df.bike_time <= 0),,,,,-999,,,,,,,,,, -util_BIKE_Female - bike,Bike - Female,@df.female,,,,,coef_female_nmot,,,,,,,,,, -util_BIKE_Bike - logsum,Bike - logsum clipped to allow for long bike trips on school escort tours,@df.bikeLS.clip(lower=-100),,,,,coef_bikeLogsum,,,,,,,,,, +util_BIKE_Mode_unavailable,Bike - Mode unavailable unless on bike tour,@(df.tourBike == 0)|(df.bike_time <= 0),,,,,-999,,,,,,,,,, +util_BIKE_Female,Bike - Female,@df.female,,,,,coef_female_nmot,,,,,,,,,, +util_BIKE_logsum,Bike - logsum clipped to allow for long bike trips on school escort tours,@df.bikeLS.clip(lower=-100),,,,,coef_bikeLogsum,,,,,,,,,, #,WalktoTransit,,,,,,,,,,,,,,,, util_WalkTransit_Unavailable,WalkTransit_Available,walk_local_available == False,,,,,,-999,,,,,,,,, util_WALKLOC__In_vehicle_time,WALK_LOC - In-vehicle time,@(odt_skims['WTW_TIV']) * df.time_factor,,,,,,coef_ivt,,,,,,,,, @@ -55,10 +55,10 @@ util_WALK_LOC_wait_egress_time,WALK_LOC - Egress mt/nev wait time,"@np.where(df. util_WALK_LOC_transfer_walk_time,WALK_LOC - transfer walk time,@(odt_skims['WTW_AUX'])* df.time_factor,,,,,,coef_xwalk,,,,,,,,, util_WALK_LOC_transfers_penalty,WALK_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.outbound*df.mtnev_egr_xfer_out + ~df.outbound*df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor",,,,,,coef_xfer,,,,,,,,, util_WTW_FARE,WALK_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,coef_income,,,,,,,,, -util_WALK_LOC - Female,WALK_LOC - Female,@(df.female),,,,,,coef_female_tran,,,,,,,,, -util_WALK_LOC - Origin Mix,WALK_LOC - Origin Mix,oMGRAMix,,,,,,coef_oMix_wTran,,,,,,,,, -util_WALK_LOC - Origin Intersection Density,WALK_LOC - Origin Intersection Density,oMGRATotInt,,,,,,coef_oIntDen_wTran,,,,,,,,, -util_WALK_LOC - Destination Employment Density,WALK_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,coef_dEmpDen_wTran,,,,,,,,, +util_WALK_LOC_Female,WALK_LOC - Female,@(df.female),,,,,,coef_female_tran,,,,,,,,, +util_WALK_LOC_Origin_Mix,WALK_LOC - Origin Mix,oMGRAMix,,,,,,coef_oMix_wTran,,,,,,,,, +util_WALK_LOC_Origin_Intersection_Density,WALK_LOC - Origin Intersection Density,oMGRATotInt,,,,,,coef_oIntDen_wTran,,,,,,,,, +util_WALK_LOC_Destination_Employment_Density,WALK_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,coef_dEmpDen_wTran,,,,,,,,, #,PNR_LOC,,,,,,,,,,,,,,,, # FIXME need PNR utilties for new PNR treatment if not restricting stops on PNR tours,,,,,,,,,,,,,,,,, util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,-999,-999,-999,-999,-999,,-999,-999,-999,-999,-999,-999,-999, @@ -88,7 +88,7 @@ util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,- # util_PNR_LOC - Destination Employment Density,PNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,coef_dEmpDen_dTran,,,,,,,, #,,,,,,,,,,,,,,,,, util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,(knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, -util_KNR_LOC_In_vehicle_time,KNR_LOC - In-vehicle time,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNR_LOC_In_vehicle_time_out,KNR_LOC - In-vehicle time,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,coef_xferdrive,,,,,,, @@ -99,7 +99,7 @@ util_KNR_LOC_Walk_other_time,KNR_LOC - Walk other time,@(odt_skims['KTW_AUX']) * util_KNR_LOC_Fare,KNR_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * df.outbound",,,,,,,,coef_income,,,,,,, util_KNR_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['KTW_ACC']/60) *driveSpeed )*100*df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, util_KNRIN_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['WTK_EGR']/60) *driveSpeed)*100*~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, -util_KNRIN_LOC_In_vehicle_time,KNRIN_LOC - In-vehicle time,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNRIN_LOC_In_vehicle_time_in,KNRIN_LOC - In-vehicle time,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,coef_ivt,,,,,,, util_KNRIN_LOC_iwait_time,KNRIN_LOC - First iwait time,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_wait,,,,,,, util_KNRIN_LOC_transfer_wait_time,KNRIN_LOC - transfer wait time,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwait,,,,,,, util_KNRIN_LOC_number_of_transfers,KNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,coef_xferdrive,,,,,,, @@ -108,55 +108,60 @@ util_KNRIN_LOC_Walk_access_time,KNRIN_LOC - Walk access time,"@np.where(df.nev_l util_KNRIN_LOC_wait_access_time,KNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,,coef_wait,,,,,,, util_KNRIN_LOC_Walk_other_time,KNRIN_LOC - Walk other time,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwalk,,,,,,, util_KNRIN_LOC_Fare_and_operating_cost,KNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,,coef_income,,,,,,, -util_KNR_LOC - Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, -util_KNR_LOC - Destination Employment Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, +util_KNR_LOC_Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, +util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, #,BiketoTransit,,,,,,,,,,,,,,,, -util_WalkTransit_Unavailable,WalkTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, -util_BIKE_TRANSIT__In_vehicle_time,BIKE_TRANSIT - In-vehicle time,@(odt_skims['WTW_TIV']) * df.time_factor,,,,,,,,,coef_ivt,,,,,, -util_BIKE_TRANSIT_iwait_time,BIKE_TRANSIT - wait time,@(odt_skims['WTW_FWT']) * df.time_factor,,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_wait_time,BIKE_TRANSIT - transfer wait time,@(odt_skims['WTW_XWT'])* df.time_factor,,,,,,,,,coef_xwait,,,,,, +util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_walk_time,BIKE_TRANSIT - transfer walk time,@(odt_skims['WTW_AUX'])* df.time_factor,,,,,,,,,coef_xwalk,,,,,, -util_BIKE_TRANSIT_transfers_penalty,BIKE_TRANSIT - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.outbound*df.mtnev_egr_xfer_out + ~df.outbound*df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, -util_BIKE_TRANSIT - Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, -util_BIKE_TRANSIT - Origin Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, -util_BIKE_TRANSIT - Origin Intersection Density,BIKE_TRANSIT - Origin Intersection Density,oMGRATotInt,,,,,,,,,coef_oIntDen_wTran,,,,,, -util_BIKE_TRANSIT - Destination Employment Density,BIKE_TRANSIT - Destination Employment Density,dMGRAEmpDen,,,,,,,,,coef_dEmpDen_wTran,,,,,, +util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, +util_BIKE_TRANSIT_Origin_Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, +util_BIKE_TRANSIT_Origin_Intersection_Density,BIKE_TRANSIT - Origin Intersection Density,oMGRATotInt,,,,,,,,,coef_oIntDen_wTran,,,,,, +util_BIKE_TRANSIT_Destination_Employment_Density,BIKE_TRANSIT - Destination Employment Density,dMGRAEmpDen,,,,,,,,,coef_dEmpDen_wTran,,,,,, #,Taxi,,,,,,,,,,,,,,,, util_Taxi_Unavailable,Taxi - Unavailable,RideHail_available==0,,,,,,,,,,-999,,,,, -util_Taxi - In-vehicle time,Taxi - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,coef_ivt,,,,, -util_Taxi - Wait time,Taxi - Wait time,origTaxiWaitTime * time_factor,,,,,,,,,,coef_wait,,,,, -util_Taxi - Fare,Taxi - Fare,"@(((Taxi_baseFare + df.s2_dist_skims * Taxi_costPerMile + df.s2_time_skims * Taxi_costPerMinute) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,coef_income,,,,, +util_Taxi_In_vehicle_time,Taxi - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,coef_ivt,,,,, +util_Taxi_Wait_time,Taxi - Wait time,origTaxiWaitTime * time_factor,,,,,,,,,,coef_wait,,,,, +util_Taxi_Fare,Taxi - Fare,"@(((Taxi_baseFare + df.s2_dist_skims * Taxi_costPerMile + df.s2_time_skims * Taxi_costPerMinute) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,coef_income,,,,, #,TNC Single,,,,,,,,,,,,,,,, -util_TNC Single_Unavailable,TNC Single - Unavailable,RideHail_available==0,,,,,,,,,,,-999,,,, -util_TNC Single - In-vehicle time,TNC Single - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,,coef_ivt,,,, -util_TNC Single - Wait time,TNC Single - Wait time,origSingleTNCWaitTime * time_factor,,,,,,,,,,,coef_wait,,,, -util_TNC Single - Cost,TNC Single - Cost,"@((np.maximum(TNC_single_baseFare + df.s2_dist_skims * TNC_single_costPerMile + df.s2_time_skims * TNC_single_costPerMinute, TNC_single_costMinimum) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,coef_income,,,, +util_TNC_Single_Unavailable,TNC Single - Unavailable,RideHail_available==0,,,,,,,,,,,-999,,,, +util_TNC_Single_In_vehicle_time,TNC Single - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,,coef_ivt,,,, +util_TNC_Single_Wait_time,TNC Single - Wait time,origSingleTNCWaitTime * time_factor,,,,,,,,,,,coef_wait,,,, +util_TNC_Single_Cost,TNC Single - Cost,"@((np.maximum(TNC_single_baseFare + df.s2_dist_skims * TNC_single_costPerMile + df.s2_time_skims * TNC_single_costPerMinute, TNC_single_costMinimum) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,coef_income,,,, #,TNC Shared,,,,,,,,,,,,,,,, -util_TNC Shared_switch,TNC Shared - switch turn-off (depends on data availability),@(((~df.nev_available) & (~df.microtransit_available) & (scenarioYear==2022)) | (df.RideHail_available==0)),,,,,,,,,,,,-999,,, -util_TNC Shared - In-vehicle time,TNC Shared - In-vehicle time,"@(np.where(df.nev_available, df.nev_time, np.where(df.microtransit_available, df.microtransit_time, df.s3_time_skims * TNC_shared_IVTFactor))) * df.time_factor",,,,,,,,,,,,coef_ivt,,, -util_TNC Shared - Wait time,TNC Shared - Wait time,"@np.where(df.nev_available, nevWaitTime, np.where(df.microtransit_available, microtransitWaitTime, df.origSharedTNCWaitTime)) * df.time_factor",,,,,,,,,,,,coef_wait,,, -util_TNC Shared - Cost,TNC Shared - Cost,"@np.where(df.nev_available, nevCost, np.where(df.microtransit_available, microtransitCost, (np.maximum(TNC_shared_baseFare + df.s3_dist_skims * TNC_shared_costPerMile + df.s3_time_skims * TNC_shared_costPerMinute, TNC_shared_costMinimum) + df.s3_cost_skims)))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,,coef_income,,, +util_TNC_Shared_switch,TNC Shared - switch turn-off (depends on data availability),@(((~df.nev_available) & (~df.microtransit_available) & (scenarioYear==2022)) | (df.RideHail_available==0)),,,,,,,,,,,,-999,,, +util_TNC_Shared_In_vehicle_time,TNC Shared - In-vehicle time,"@(np.where(df.nev_available, df.nev_time, np.where(df.microtransit_available, df.microtransit_time, df.s3_time_skims * TNC_shared_IVTFactor))) * df.time_factor",,,,,,,,,,,,coef_ivt,,, +util_TNC_Shared_Wait_time,TNC Shared - Wait time,"@np.where(df.nev_available, nevWaitTime, np.where(df.microtransit_available, microtransitWaitTime, df.origSharedTNCWaitTime)) * df.time_factor",,,,,,,,,,,,coef_wait,,, +util_TNC_Shared_Cost,TNC Shared - Cost,"@np.where(df.nev_available, nevCost, np.where(df.microtransit_available, microtransitCost, (np.maximum(TNC_shared_baseFare + df.s3_dist_skims * TNC_shared_costPerMile + df.s3_time_skims * TNC_shared_costPerMinute, TNC_shared_costMinimum) + df.s3_cost_skims)))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,,coef_income,,, util_calib_flexfleet,Calibration for flexible fleets,microtransit_available | nev_available,,,,,,,,,,,,coef_calib_flexfleet,,, #,School bus,,,,,,,,,,,,,,,, -util_School Bus - Unavailable,School Bus - Unavailable,SCHBUS_available==0,,,,,,,,,,,,,-999,, -util_School Bus - In-vehicle Time at 20 miles per hour,School Bus - In-vehicle Time at 20 miles per hour,(da_dist_skims)* 3 * time_factor,,,,,,,,,,,,,coef_ivt,, -util_School Bus - Wait Time (asserted),School Bus - Wait Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_wait,, -util_School Bus - Walk Time (asserted),School Bus - Walk Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_acctime,, -util_School Bus - Age 6 to 12,School Bus - Age 6 to 12,@(df.age > 5) * (df.age < 13),,,,,,,,,,,,,coef_age6to12_schb,, +util_School_Bus_Unavailable,School Bus - Unavailable,SCHBUS_available==0,,,,,,,,,,,,,-999,, +util_School_Bus_In_vehicle_Time,School Bus - In-vehicle Time at 20 miles per hour,(da_dist_skims)* 3 * time_factor,,,,,,,,,,,,,coef_ivt,, +util_School_Bus_Wait_Time,School Bus - Wait Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_wait,, +util_School_Bus_Walk_Time,School Bus - Walk Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_acctime,, +util_School_Bus_Age_6_to_12,School Bus - Age 6 to 12,@(df.age > 5) * (df.age < 13),,,,,,,,,,,,,coef_age6to12_schb,, #,Escooter,,,,,,,,,,,,,,,, -util_Escooter - Unavailable,Escooter - Unavailable,Escooter_available==0,,,,,,,,,,,,,,,-999 +util_Escooter_Unavailable,Escooter - Unavailable,Escooter_available==0,,,,,,,,,,,,,,,-999 #,Ebike,,,,,,,,,,,,,,,, -util_Ebike - Unavailable,Ebike - Unavailable,Ebike_available==0,,,,,,,,,,,,,,-999, +util_Ebike_Unavailable,Ebike - Unavailable,Ebike_available==0,,,,,,,,,,,,,,-999, #,indiv tour ASCs,,,,,,,,,,,,,,,, util_calib_numberofparticipan,abm 2+ calibration,(numberOfParticipantsInJointTour<=2)&(jointTour==1),,,coef_calib_numberofparticipants_SHARED3,,,,,,,,,,,, -util_calib_KNR Transit - Distance Parameter,abm 2+ calibration,"@df.c_ivt*5*np.maximum((10-df.da_dist_skims),0)*0.5",,,,,,,,coef_calib_civt5max10sovdistski_KNR_TRANSIT,coef_calib_civt5max10sovdistski_TNC_TRANSIT,,,,,, -util_calib_Walk-Transit - Distance Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((200+(-133*df.da_dist_skims)),0)*0.5",,,,,,coef_calib_civtmax200133sovdist_WALK_TRANSIT,,,,,,,,, -util_calib_PNR-Transit - Distance Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((45+(-2.5*df.da_dist_skims)),0)*0.5",,,,,,,coef_calib_civtmax4525sovdistsk_PNR_TRANSIT,,,,,,,, +util_calib_KNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*5*np.maximum((10-df.da_dist_skims),0)*0.5",,,,,,,,coef_calib_civt5max10sovdistski_KNR_TRANSIT,coef_calib_civt5max10sovdistski_TNC_TRANSIT,,,,,, +util_calib_Walk_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((200+(-133*df.da_dist_skims)),0)*0.5",,,,,,coef_calib_civtmax200133sovdist_WALK_TRANSIT,,,,,,,,, +util_calib_PNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((45+(-2.5*df.da_dist_skims)),0)*0.5",,,,,,,coef_calib_civtmax4525sovdistsk_PNR_TRANSIT,,,,,,,, util_calib_esctour1,abm 2+ calibration,tour_type=='escort',,,,coef_calib_esctour1_WALK,,,,,,,,,,, #,,,,,,,,,,,,,,,,, util_calib_tourda,abm 2+ calibration,tourDA,,coef_calib_tourda_SHARED2,coef_calib_tourda_SHARED3,coef_calib_tourda_WALK,coef_calib_tourda_BIKE,coef_calib_tourda_WALK_TRANSIT,coef_calib_tourda_PNR_TRANSIT,coef_calib_tourda_KNR_TRANSIT,coef_calib_tourda_TNC_TRANSIT,coef_calib_tourda_TAXI,coef_calib_tourda_TNC_SINGLE,coef_calib_tourda_TNC_SHARED,coef_calib_tourda_SCH_BUS,-999,-999 From 4aac9b3e65ca10bf986b1f84639aa3bf5fff7aa4 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 24 Feb 2026 13:32:14 -0500 Subject: [PATCH 19/46] One more logging fix --- resident/configs/logging.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resident/configs/logging.yaml b/resident/configs/logging.yaml index 0843782..9342be6 100644 --- a/resident/configs/logging.yaml +++ b/resident/configs/logging.yaml @@ -46,12 +46,12 @@ logging: class: logging.Formatter # format: '%(levelname)s - %(name)s - %(message)s' format: '%(levelname)s - %(message)s' - datefmt: '%Y-%m-%dT%H:%M:%S%:z' + datefmt: '%Y-%m-%dT%H:%M:%S%z' fileFormatter: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' - datefmt: '%Y-%m-%dT%H:%M:%S%:z' + datefmt: '%Y-%m-%dT%H:%M:%S%z' elapsedFormatter: (): activitysim.core.tracing.ElapsedTimeFormatter From 18c68031d538e6ad1fec04e9fb2af69ae7840b98 Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Wed, 25 Feb 2026 11:00:51 -0800 Subject: [PATCH 20/46] allowing FT workers to go to univ --- resident/configs/annotate_persons.csv | 29 +++++++++++++-------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/resident/configs/annotate_persons.csv b/resident/configs/annotate_persons.csv index cf6c983..c6897f0 100644 --- a/resident/configs/annotate_persons.csv +++ b/resident/configs/annotate_persons.csv @@ -11,24 +11,23 @@ employment status type,pemploy,"pd.Series(np.zeros(len(persons)), index=persons. ,pemploy,"np.where((persons.age >= 16) & ((persons.ESR == 3) | (persons.ESR == 6)), PEMPLOY_NOT, pemploy)" ,pemploy,"np.where((persons.age>=16) & (persons.ESR != 3) & (persons.ESR != 6) & (persons.WKHP >= 35) & (persons.WKW >= 1) & (persons.WKW <= 4), PEMPLOY_FULL, pemploy)" student category,pstudent,"pd.Series(np.zeros(len(persons)), index=persons.index)" -,pstudent,"np.where((pemploy == 1) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" -,pstudent,"np.where((pemploy == 1) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" +,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" ,pstudent,"np.where((persons.SCHG < 1) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" ,pstudent,"np.where((persons.SCHG < 1) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16) & (pemploy != 1), PSTUDENT_UNIVERSITY, pstudent)" -,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16) & (pemploy != 1), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.age <= 19) & (pemploy != 1) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.age > 19) & (pemploy != 1) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" -,pstudent,"np.where(pstudent == 0, 3, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age <= 19) & (pemploy != PEMPLOY_FULL) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age > 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where(pstudent == 0, PSTUDENT_NOT, pstudent)" person type,ptype,"pd.Series(np.zeros(len(persons)), index=persons.index)" -,ptype,"np.where((pemploy == 1), PTYPE_FULL, PTYPE_NONWORK)" -,ptype,"np.where((pstudent == 3) & (pemploy == 2), PTYPE_PART, ptype)" -,ptype,"np.where((pstudent == 3) & (persons.age >= 65) & ((pemploy == 3) | (pemploy == 4)), PTYPE_RETIRED, ptype)" -,ptype,"np.where((pstudent == 3) & (persons.age < 6) & ((pemploy == 3) | (pemploy == 4)), PTYPE_PRESCHOOL, ptype)" -,ptype,"np.where((pstudent == 3) & (persons.age >= 6) & (persons.age <= 64) & ((pemploy == 3) | (pemploy == 4)), PTYPE_NONWORK, ptype)" -,ptype,"np.where((pstudent == 2) & ((pemploy == 2) | (pemploy == 3) | (pemploy == 4)), PTYPE_UNIVERSITY, ptype)" -,ptype,"np.where((pstudent == 1) & (persons.age < 6) & ((pemploy == 2) | (pemploy == 3) | (pemploy == 4)), PTYPE_PRESCHOOL, ptype)" -,ptype,"np.where((pstudent == 1) & (persons.age >= 6) & ((pemploy == 2) | (pemploy == 3) | (pemploy == 4)), PTYPE_SCHOOL, ptype)" +,ptype,"np.where((pemploy == PEMPLOY_FULL), PTYPE_FULL, PTYPE_NONWORK)" +,ptype,"np.where((pstudent == PSTUDENT_NOT) & (pemploy == PEMPLOY_PART), PTYPE_PART, ptype)" +,ptype,"np.where((pstudent == PSTUDENT_NOT) & (persons.age >= 65) & ((pemploy == PEMPLOY_NOT) | (pemploy == PEMPLOY_CHILD)), PTYPE_RETIRED, ptype)" +,ptype,"np.where((pstudent == PSTUDENT_NOT) & (persons.age >= 6) & (persons.age <= 64) & ((pemploy == PEMPLOY_NOT) | (pemploy == PEMPLOY_CHILD)), PTYPE_NONWORK, ptype)" +,ptype,"np.where((pstudent == PSTUDENT_UNIVERSITY) & (pemploy != PEMPLOY_FULL), PTYPE_UNIVERSITY, ptype)" +,ptype,"np.where((pstudent == PSTUDENT_GRADE_OR_HIGH) & (persons.age >= 6), PTYPE_SCHOOL, ptype)" +,ptype,"np.where((persons.age < 6), PTYPE_PRESCHOOL, ptype)" # FIXME are these rules for preschoolers still wanted?,, is_student,is_student,"np.isin(pstudent, [PSTUDENT_GRADE_OR_HIGH, PSTUDENT_UNIVERSITY])" preschool age can go to preschool,is_student,"np.where(persons.age > GRADE_SCHOOL_MIN_AGE, is_student, True)" From cb38524cdd236f822c5b9c89219fce092a60730e Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 25 Feb 2026 16:07:03 -0500 Subject: [PATCH 21/46] shopping to HCS employment --- resident/configs/destination_choice_size_terms.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 8bb62cb..c41ee4e 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -11,7 +11,7 @@ school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0 -non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0.1,0,0,0,0,0,0,0,0,0,0.1,0 non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0 non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0 non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0 From 04fb248ab8120f53579fb46f85d7d80f0330b22e Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 25 Feb 2026 16:09:41 -0500 Subject: [PATCH 22/46] Actually lets just make it all employment --- resident/configs/destination_choice_size_terms.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index c41ee4e..5b70001 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -11,7 +11,7 @@ school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0 -non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0.1,0,0,0,0,0,0,0,0,0,0.1,0 +non_mandatory,shopping,0.01,0,0.1,0.1,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0 non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0 non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0 non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0 From b7d73d0790422eb90caee8599e29c041dea4806f Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Wed, 25 Feb 2026 13:30:15 -0800 Subject: [PATCH 23/46] estimation specific size terms --- .../destination_choice_size_terms.csv | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 resident/configs_estimation/destination_choice_size_terms.csv diff --git a/resident/configs_estimation/destination_choice_size_terms.csv b/resident/configs_estimation/destination_choice_size_terms.csv new file mode 100644 index 0000000..329f5a4 --- /dev/null +++ b/resident/configs_estimation/destination_choice_size_terms.csv @@ -0,0 +1,39 @@ +model_selector,segment,TOTHHS,TOTPOP,EMP_NRM,EMP_CON,EMP_MFG,EMP_WT,EMP_TWU,EMP_RET,EMP_IFRPBS,EMP_HCS,EMP_OSV,EMP_GOV,EMP_EDU,EMP_AER,EMP_AFS,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,COLLEGEENROLL,ACTIVE_ACRES,EXTERNAL,ACRES +workplace,mngt_busi_scic_arts,0,0,0.023150473,0.105478261,0.033921273,0.520588696,0.019155288,0.063194096,1,0.12997306,0.101893393,0.357056089,0.046020203,0.044384337,0.014582422,0,0,0,0,0,0,0 +workplace,white_collar,0,0,0.011768937,0.051276887,0.174045033,1,0.206618229,0.914135674,0.494698223,0.170534494,0.142953744,0.337702324,0.048183584,0.052183296,0.031177613,0,0,0,0,0,0,0 +workplace,blue_collar,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0,0 +workplace,sales_office,0,0,0.03214445,0.013782902,0.002031041,0.064277161,0.007689779,0.04669046,0.477412008,0.145096152,0.403566649,0.565075489,0.264904083,0.154746531,0.079950222,0,0,0,0,0,0,0 +workplace,nat_res_cnstr_maint,0,0,0.114467809,1,0.019444044,0.053921216,0.042038744,0.057720006,0.149701138,0.007849633,0.160935475,0.137710644,0.014673052,0.021406453,0.007723607,0,0,0,0,0,0,0 +workplace,prod_trans_move,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0,0 +workplace,missing,0,0,0.03214445,0.013782902,0.002031041,0.064277161,0.007689779,0.04669046,0.477412008,0.145096152,0.403566649,0.565075489,0.264904083,0.154746531,0.079950222,0,0,0,0,0,0,0 +school,preschool,0,0.1888,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0 +school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0.001 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 +non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0,0.001 +non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0,0.001 +non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0,0.001 +non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0,0.001 +atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0,0.001 +trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001 +trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0.001 +trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0,0.001 +trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0,0.001 +trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 +trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 +trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0,0.001 +trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.001 +trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0.001 +# not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,,, +#trip,gradeschool,0,,,,,,,,,,,,,,,,,,,,, +#trip,highschool,0,,,,,,,,,,,,,,,,,,,,, +external_workplace,external_workplace,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_nonwork,external_nonwork,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,escort,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,shopping,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,othmaint,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,eatout,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,social,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,othdiscr,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 From 327ebe59ccac735826410b8e01f3df9702d430b9 Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Wed, 25 Feb 2026 22:00:57 -0800 Subject: [PATCH 24/46] adding missing alts for estimation --- resident/configs/non_mandatory_tour_frequency_alternatives.csv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resident/configs/non_mandatory_tour_frequency_alternatives.csv b/resident/configs/non_mandatory_tour_frequency_alternatives.csv index e4d4f2e..e380bcd 100644 --- a/resident/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/resident/configs/non_mandatory_tour_frequency_alternatives.csv @@ -196,3 +196,5 @@ escort,shopping,othmaint,eatout,social,othdiscr 2,2,0,0,1,0 2,2,0,1,0,0 2,2,1,0,0,0 +2,2,1,0,1,0 +1,2,1,1,1,0 From 259717132ecef3488054792eb3e4e93c467c0e6a Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Mon, 2 Mar 2026 20:18:53 -0800 Subject: [PATCH 25/46] turn availability conditions off for trip mode choice --- .../trip_mode_choice_coefficients.csv | 1432 +++++++++++++++++ 1 file changed, 1432 insertions(+) create mode 100644 resident/configs_estimation/trip_mode_choice_coefficients.csv diff --git a/resident/configs_estimation/trip_mode_choice_coefficients.csv b/resident/configs_estimation/trip_mode_choice_coefficients.csv new file mode 100644 index 0000000..92c90eb --- /dev/null +++ b/resident/configs_estimation/trip_mode_choice_coefficients.csv @@ -0,0 +1,1432 @@ +coefficient_name,value,constrain +coef_zero,0.0,T +coef_one,1.0,T +coef_nest_root,1.0,T +coef_nest_AUTO,0.5,T +coef_nest_NONMOTORIZED,0.5,T +coef_nest_MICROMOBILITY,0.5,T +coef_nest_TRANSIT,0.5,T +coef_nest_RIDEHAIL,0.5,T +coef_nest_SCHOOL_BUS,0.5,T +coef_unavailable,-30.0,T +#,0.0, +coef_ivt_work,-0.032,F +coef_ivt_univ,-0.032,F +coef_ivt_school,-0.02,F +coef_ivt_maint,-0.034,F +coef_ivt_disc,-0.03,F +coef_ivt_atwork,-0.064,F +coef_rel_work,-0.384,F +coef_rel_univ,-0.384,F +coef_rel_school,-0.24,F +coef_rel_maint,-0.408,F +coef_rel_disc,-0.36,F +coef_rel_atwork,-0.768,F +coef_income_work,-1.25,F +coef_income_univ,-0.524,F +coef_income_school,-0.524,F +coef_income_maint,-0.524,F +coef_income_disc,-0.524,F +coef_income_atwork,-0.524,F +coef_walktime_work,-0.0848,F +coef_walktime_univ,-0.0848,F +coef_walktime_school,-0.053,F +coef_walktime_maint,-0.0901,F +coef_walktime_disc,-0.0795,F +coef_walktime_atwork,-0.1696,F +coef_wait_work,-0.048,F +coef_wait_univ,-0.048,F +coef_wait_school,-0.03,F +coef_wait_maint,-0.051,F +coef_wait_disc,-0.045,F +coef_wait_atwork,-0.096,F +coef_xwait_work,-0.064,F +coef_xwait_univ,-0.064,F +coef_xwait_school,-0.04,F +coef_xwait_maint,-0.068,F +coef_xwait_disc,-0.06,F +coef_xwait_atwork,-0.128,F +coef_xfer_work,-0.048,F +coef_xfer_univ,-0.048,F +coef_xfer_school,-0.03,F +coef_xfer_maint,-0.051,F +coef_xfer_disc,-0.045,F +coef_xfer_atwork,-0.096,F +coef_xferdrive_work,-0.064,F +coef_xferdrive_univ,-0.064,F +coef_xferdrive_school,-0.04,F +coef_xferdrive_maint,-0.068,F +coef_xferdrive_disc,-0.06,F +coef_xferdrive_atwork,-0.128,F +coef_acctime_work,-0.064,F +coef_acctime_univ,-0.064,F +coef_acctime_school,-0.04,F +coef_acctime_maint,-0.068,F +coef_acctime_disc,-0.06,F +coef_acctime_atwork,-0.128,F +coef_xwalk_work,-0.064,F +coef_xwalk_univ,-0.064,F +coef_xwalk_school,-0.04,F +coef_xwalk_maint,-0.068,F +coef_xwalk_disc,-0.06,F +coef_xwalk_atwork,-0.128,F +#,0.0, +coef_oMix_nmot_work,0.22519,F +coef_oMix_wTran_work,0.0,F +coef_oIntDen_nmot_work,0.0,F +coef_oIntDen_wTran_work,0.0,F +coef_dEmpDen_nmot_work,0.0,F +coef_dEmpDen_wTran_work,0.0,F +coef_dEmpDen_dTran_work,0.02512,F +coef_female_sr2_work,0.2743,F +coef_female_sr3p_work,0.0718,F +coef_female_tran_work,1.0624,F +coef_female_nmot_work,-1.1033,F +coef_size2_sr2_work,0.0,F +coef_size2_sr3p_work,0.0,F +coef_size3_sr2_work,0.0,F +coef_size3_sr3p_work,0.0,F +coef_size4p_sr2_work,0.0,F +coef_size4p_sr3p_work,0.0,F +coef_bikeLogsum_work,0.06717,F +#,0.0, +coef_oMix_nmot_univ,0.0,F +coef_oMix_wTran_univ,0.0,F +coef_oIntDen_nmot_univ,0.0,F +coef_oIntDen_wTran_univ,0.0,F +coef_dEmpDen_nmot_univ,0.0,F +coef_dEmpDen_wTran_univ,0.0,F +coef_dEmpDen_dTran_univ,0.0,F +coef_female_sr2_univ,-0.7308,F +coef_female_sr3p_univ,-1.11759,F +coef_female_tran_univ,0.0,F +coef_female_nmot_univ,0.0,F +coef_size2_sr2_univ,0.0,F +coef_size2_sr3p_univ,0.0,F +coef_size3_sr2_univ,0.0,F +coef_size3_sr3p_univ,0.0,F +coef_size4p_sr2_univ,0.0,F +coef_size4p_sr3p_univ,0.0,F +coef_bikeLogsum_univ,0.06717,F +#,0.0, +coef_oMix_nmot_school,0.0,F +coef_oMix_wTran_school,0.0,F +coef_oIntDen_nmot_school,0.0,F +coef_oIntDen_wTran_school,0.0,F +coef_dEmpDen_nmot_school,0.0,F +coef_dEmpDen_wTran_school,0.0,F +coef_dEmpDen_dTran_school,0.0,F +coef_female_sr2_school,0.0,F +coef_female_sr3p_school,0.0,F +coef_female_tran_school,0.0,F +coef_female_nmot_school,0.0,F +coef_age1to5_nmot_school,-1.711,F +coef_age6to12_nmot_school,-0.762,F +coef_age13to15_nmot_school,-0.312,F +coef_age6to12_schb_school,0.0,F +coef_size2_sr2_school,0.0,F +coef_size2_sr3p_school,0.0,F +coef_size3_sr2_school,0.0,F +coef_size3_sr3p_school,0.0,F +coef_size4p_sr2_school,0.0,F +coef_size4p_sr3p_school,0.0,F +coef_bikeLogsum_school,0.06717,F +#,0.0, +coef_oMix_nmot_maint,0.0,F +coef_oMix_wTran_maint,0.0,F +coef_oIntDen_nmot_maint,0.0,F +coef_oIntDen_wTran_maint,0.0,F +coef_dEmpDen_nmot_maint,0.093,F +coef_dEmpDen_wTran_maint,0.0,F +coef_dEmpDen_dTran_maint,0.0,F +coef_female_sr2_maint,0.0,F +coef_female_sr3p_maint,0.0,F +coef_female_tran_maint,0.0,F +coef_female_nmot_maint,0.0,F +coef_size2_sr2_maint,0.0,F +coef_size2_sr3p_maint,0.0,F +coef_size3_sr2_maint,-0.416,F +coef_size3_sr3p_maint,0.792,F +coef_size4p_sr2_maint,-0.444,F +coef_size4p_sr3p_maint,0.424,F +coef_bikeLogsum_maint,0.06717,F +#,0.0, +coef_oMix_nmot_disc,0.275,F +coef_oMix_wTran_disc,0.0,F +coef_oIntDen_nmot_disc,0.0,F +coef_oIntDen_wTran_disc,0.0,F +coef_dEmpDen_nmot_disc,0.0,F +coef_dEmpDen_wTran_disc,0.0,F +coef_dEmpDen_dTran_disc,0.0,F +coef_female_sr2_disc,0.0,F +coef_female_sr3p_disc,0.0,F +coef_female_tran_disc,-2.736,F +coef_female_nmot_disc,0.0,F +coef_size2_sr2_disc,0.0,F +coef_size2_sr3p_disc,0.0,F +coef_size3_sr2_disc,0.958,F +coef_size3_sr3p_disc,0.695,F +coef_size4p_sr2_disc,0.958,F +coef_size4p_sr3p_disc,0.695,F +coef_bikeLogsum_disc,0.06717,F +#,0.0, +coef_oMix_nmot_atwork,0.0,F +coef_oMix_wTran_atwork,0.0,F +coef_oIntDen_nmot_atwork,0.0,F +coef_oIntDen_wTran_atwork,0.0,F +coef_dEmpDen_nmot_atwork,0.0,F +coef_dEmpDen_wTran_atwork,0.0,F +coef_dEmpDen_dTran_atwork,0.0,F +coef_female_sr2_atwork,0.0,F +coef_female_sr3p_atwork,0.0,F +coef_female_tran_atwork,0.0,F +coef_female_nmot_atwork,0.0,F +coef_size2_sr2_atwork,0.0,F +coef_size2_sr3p_atwork,0.0,F +coef_size3_sr2_atwork,0.0,F +coef_size3_sr3p_atwork,0.0,F +coef_size4p_sr2_atwork,0.0,F +coef_size4p_sr3p_atwork,0.0,F +coef_bikeLogsum_atwork,0.06717,F +coef_walkTime_atwork,-0.15926,F +#,0.0, +coef_calib_civt5max10sovdistski_KNR_TRANSIT_work,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_work,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_work,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_work,1.0,F +coef_calib_tourbike_DRIVEALONE_work,-30.0,F +coef_calib_tourbike_SHARED2_work,0.0,F +coef_calib_tourbike_SHARED3_work,0.0,F +coef_calib_tourbike_WALK_work,-44.0,F +coef_calib_tourbike_BIKE_work,-0.3227686816960651,F +coef_calib_tourbike_WALK_TRANSIT_work,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_work,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_work,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_work,-30.0,F +coef_calib_tourbike_TAXI_work,-30.0,F +coef_calib_tourbike_TNC_SINGLE_work,-30.0,F +coef_calib_tourbike_TNC_SHARED_work,-30.0,F +coef_calib_tourda_SHARED2_work,-30.0,F +coef_calib_tourda_SHARED3_work,-30.0,F +coef_calib_tourda_WALK_work,-30.0,F +coef_calib_tourda_BIKE_work,-30.0,F +coef_calib_tourda_WALK_TRANSIT_work,-30.0,F +coef_calib_tourda_PNR_TRANSIT_work,-30.0,F +coef_calib_tourda_KNR_TRANSIT_work,-30.0,F +coef_calib_tourda_TNC_TRANSIT_work,-30.0,F +coef_calib_tourda_TAXI_work,-30.0,F +coef_calib_tourda_TNC_SINGLE_work,-30.0,F +coef_calib_tourda_TNC_SHARED_work,-30.0,F +coef_calib_tourknr_DRIVEALONE_work,-3996.0,F +coef_calib_tourknr_SHARED2_work,3.206724072,F +coef_calib_tourknr_SHARED3_work,2.371212584,F +coef_calib_tourknr_WALK_work,3.88459523,F +coef_calib_tourknr_BIKE_work,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_work,15.5746,F +coef_calib_tourknr_PNR_TRANSIT_work,-30.0,F +coef_calib_tourknr_KNR_TRANSIT_work,1.1644205853617382,F +coef_calib_tourknr_TNC_TRANSIT_work,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_work,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_work,-1.0,F +coef_calib_tourknrtotstops0_SHARED3_work,-1.0,F +coef_calib_tourknrtotstops0_WALK_work,-1.0,F +coef_calib_tourknrtotstops0_BIKE_work,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_work,-1.0,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tourknrfirstofmultip_DRIVEALONE_work,-30.0,F +coef_calib_tourknrfirstofmultip_BIKE_work,-30.0,F +coef_calib_tourknrfirstofmultip_PNR_TRANSIT_work,-30.0,F +coef_calib_tourknrlastofmultipl_DRIVEALONE_work,-30.0,F +coef_calib_tourknrlastofmultipl_BIKE_work,-30.0,F +coef_calib_tourknrlastofmultipl_PNR_TRANSIT_work,-30.0,F +coef_calib_tourmaas_DRIVEALONE_work,-30.0,F +coef_calib_tourmaas_SHARED2_work,-29.26,F +coef_calib_tourmaas_SHARED3_work,-23.83,F +coef_calib_tourmaas_WALK_work,-20.71,F +coef_calib_tourmaas_BIKE_work,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_work,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_work,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_work,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_work,-30.0,F +coef_calib_tourmaas_TAXI_work,-28.06,F +coef_calib_tourmaas_TNC_SINGLE_work,2.787820012666538,F +coef_calib_tourmaas_TNC_SHARED_work,-7.11,F +coef_calib_tourpnr_DRIVEALONE_work,2.306054249,F +coef_calib_tourpnr_SHARED2_work,2.109169591,F +coef_calib_tourpnr_SHARED3_work,1.526,F +coef_calib_tourpnr_WALK_work,0.92600338,F +coef_calib_tourpnr_BIKE_work,-3996.0,F +coef_calib_tourpnr_WALK_TRANSIT_work,8.109380657,F +coef_calib_tourpnr_PNR_TRANSIT_work,0.6683276501380512,F +coef_calib_tourpnr_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_work,-30.0,F +coef_calib_tourpnr_TAXI_work,-30.0,F +coef_calib_tourpnr_TNC_SINGLE_work,-30.0,F +coef_calib_tourpnr_TNC_SHARED_work,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_work,-10.0,F +coef_calib_tourpnrtotstops0_SHARED2_work,-30.0,F +coef_calib_tourpnrtotstops0_SHARED3_work,-30.0,F +coef_calib_tourpnrtotstops0_WALK_work,-30.0,F +coef_calib_tourpnrtotstops0_BIKE_work,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_work,-30.0,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tourpnrfirstofmultip_BIKE_work,-30.0,F +coef_calib_tourpnrfirstofmultip_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnrfirstofmultip_TNC_TRANSIT_work,-30.0,F +coef_calib_tourpnrlastofmultipl_BIKE_work,-30.0,F +coef_calib_tourpnrlastofmultipl_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnrlastofmultipl_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2_DRIVEALONE_work,1.7593561940559026,F +coef_calib_tours2_SHARED2_work,1.0508543549194378,F +coef_calib_tours2_SHARED3_work,-30.0,F +coef_calib_tours2_WALK_work,1.9299711755116555,F +coef_calib_tours2_BIKE_work,-30.0,F +coef_calib_tours2_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2_TAXI_work,-30.0,F +coef_calib_tours2_TNC_SINGLE_work,-30.0,F +coef_calib_tours2_TNC_SHARED_work,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_work,-3.2003,F +coef_calib_tours2totstops0_SHARED3_work,-30.0,F +coef_calib_tours2totstops0_WALK_work,-3.2003,F +coef_calib_tours2totstops0_BIKE_work,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2totstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2totstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2totstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_DRIVEALONE_work,-3.0147,F +coef_calib_tours2firstofmultipl_SHARED3_work,-30.0,F +coef_calib_tours2firstofmultipl_WALK_work,-3.0147,F +coef_calib_tours2firstofmultipl_BIKE_work,-30.0,F +coef_calib_tours2firstofmultipl_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_DRIVEALONE_work,-2.0599,F +coef_calib_tours2lastofmultiple_SHARED3_work,-30.0,F +coef_calib_tours2lastofmultiple_WALK_work,-2.0599,F +coef_calib_tours2lastofmultiple_BIKE_work,-30.0,F +coef_calib_tours2lastofmultiple_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3_DRIVEALONE_work,2.065041397538226,F +coef_calib_tours3_SHARED2_work,1.3212585379251784,F +coef_calib_tours3_SHARED3_work,1.4561122694539546,F +coef_calib_tours3_WALK_work,-6.474446872498466,F +coef_calib_tours3_BIKE_work,-30.0,F +coef_calib_tours3_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3_TAXI_work,-30.0,F +coef_calib_tours3_TNC_SINGLE_work,-30.0,F +coef_calib_tours3_TNC_SHARED_work,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_work,-2.2614,F +coef_calib_tours3totstops0_SHARED2_work,-2.2614,F +coef_calib_tours3totstops0_WALK_work,-2.2614,F +coef_calib_tours3totstops0_BIKE_work,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3totstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3totstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3totstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_DRIVEALONE_work,-1.8752,F +coef_calib_tours3firstofmultipl_SHARED2_work,-1.8752,F +coef_calib_tours3firstofmultipl_WALK_work,-1.8752,F +coef_calib_tours3firstofmultipl_BIKE_work,-30.0,F +coef_calib_tours3firstofmultipl_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_DRIVEALONE_work,-1.611,F +coef_calib_tours3lastofmultiple_SHARED2_work,-1.611,F +coef_calib_tours3lastofmultiple_WALK_work,-1.611,F +coef_calib_tours3lastofmultiple_BIKE_work,-30.0,F +coef_calib_tours3lastofmultiple_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_TNC_TRANSIT_work,-30.0,F +coef_calib_tourtnr_DRIVEALONE_work,-30.0,F +coef_calib_tourtnr_BIKE_work,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtran_DRIVEALONE_work,-3.915145738127669,F +coef_calib_tourwtran_SHARED2_work,-2.7208261492167063,F +coef_calib_tourwtran_SHARED3_work,-4.6518099156093395,F +coef_calib_tourwtran_WALK_work,-2.801049007072627,F +coef_calib_tourwtran_BIKE_work,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_work,1.05215339432953,F +coef_calib_tourwtran_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwtran_TAXI_work,-9.690000000000001,F +coef_calib_tourwtran_TNC_SINGLE_work,32.98207726381463,F +coef_calib_tourwtran_TNC_SHARED_work,-8.690000000000001,F +coef_calib_tourwtrantotstops0_DRIVEALONE_work,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_work,-1.6562,F +coef_calib_tourwtrantotstops0_SHARED3_work,-1.6562,F +coef_calib_tourwtrantotstops0_WALK_work,-1.6562,F +coef_calib_tourwtrantotstops0_BIKE_work,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_work,-30.0,F +coef_calib_tourwtranfirstofmult_BIKE_work,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwtranlastofmulti_DRIVEALONE_work,-30.0,F +coef_calib_tourwtranlastofmulti_BIKE_work,-30.0,F +coef_calib_tourwtranlastofmulti_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranlastofmulti_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranlastofmulti_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwalk_DRIVEALONE_work,-30.0,F +coef_calib_tourwalk_SHARED2_work,-30.0,F +coef_calib_tourwalk_SHARED3_work,-30.0,F +coef_calib_tourwalk_BIKE_work,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_work,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwalk_TAXI_work,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_work,-30.0,F +coef_calib_tourwalk_TNC_SHARED_work,-30.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_univ,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_univ,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_univ,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_univ,1.0,F +coef_calib_tourbike_DRIVEALONE_univ,-30.0,F +coef_calib_tourbike_SHARED2_univ,0.0,F +coef_calib_tourbike_SHARED3_univ,0.0,F +coef_calib_tourbike_WALK_univ,-1.156683606924339,F +coef_calib_tourbike_BIKE_univ,-1.3630686198359863,F +coef_calib_tourbike_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourbike_TAXI_univ,-30.0,F +coef_calib_tourbike_TNC_SINGLE_univ,-30.0,F +coef_calib_tourbike_TNC_SHARED_univ,-30.0,F +coef_calib_tourda_SHARED2_univ,-30.0,F +coef_calib_tourda_SHARED3_univ,-30.0,F +coef_calib_tourda_WALK_univ,-30.0,F +coef_calib_tourda_BIKE_univ,-30.0,F +coef_calib_tourda_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourda_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourda_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourda_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourda_TAXI_univ,-30.0,F +coef_calib_tourda_TNC_SINGLE_univ,-30.0,F +coef_calib_tourda_TNC_SHARED_univ,-30.0,F +coef_calib_tourknr_DRIVEALONE_univ,-30.0,F +coef_calib_tourknr_SHARED2_univ,1.5968,F +coef_calib_tourknr_SHARED3_univ,0.1427,F +coef_calib_tourknr_WALK_univ,2.186,F +coef_calib_tourknr_BIKE_univ,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_univ,84.7542,F +coef_calib_tourknr_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourknr_KNR_TRANSIT_univ,0.7790842015177633,F +coef_calib_tourknr_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_univ,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_univ,-1.0002,F +coef_calib_tourknrtotstops0_SHARED3_univ,-1.0002,F +coef_calib_tourknrtotstops0_WALK_univ,-1.0002,F +coef_calib_tourknrtotstops0_BIKE_univ,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_univ,-1.0002,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourknrfirstofmultip_DRIVEALONE_univ,-30.0,F +coef_calib_tourknrfirstofmultip_BIKE_univ,-30.0,F +coef_calib_tourknrfirstofmultip_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourknrlastofmultipl_DRIVEALONE_univ,-30.0,F +coef_calib_tourknrlastofmultipl_BIKE_univ,-30.0,F +coef_calib_tourknrlastofmultipl_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_DRIVEALONE_univ,-30.0,F +coef_calib_tourmaas_WALK_univ,6.45,F +coef_calib_tourmaas_BIKE_univ,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_TAXI_univ,-1.35,F +coef_calib_tourmaas_TNC_SINGLE_univ,3.9912848911170227,F +coef_calib_tourmaas_TNC_SHARED_univ,-0.8600000000000001,F +coef_calib_tourpnr_DRIVEALONE_univ,-9.6624,F +coef_calib_tourpnr_SHARED2_univ,-8.4295,F +coef_calib_tourpnr_SHARED3_univ,-9.1428,F +coef_calib_tourpnr_WALK_univ,-30.0,F +coef_calib_tourpnr_BIKE_univ,-30.0,F +coef_calib_tourpnr_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourpnr_PNR_TRANSIT_univ,-4.598436349478694,F +coef_calib_tourpnr_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourpnr_TAXI_univ,-30.0,F +coef_calib_tourpnr_TNC_SINGLE_univ,-30.0,F +coef_calib_tourpnr_TNC_SHARED_univ,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_univ,-1.0002,F +coef_calib_tourpnrtotstops0_SHARED2_univ,-1.0002,F +coef_calib_tourpnrtotstops0_SHARED3_univ,-1.0002,F +coef_calib_tourpnrtotstops0_WALK_univ,-1.0002,F +coef_calib_tourpnrtotstops0_BIKE_univ,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_univ,-1.0002,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourpnrfirstofmultip_BIKE_univ,-30.0,F +coef_calib_tourpnrfirstofmultip_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnrfirstofmultip_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourpnrlastofmultipl_BIKE_univ,-30.0,F +coef_calib_tourpnrlastofmultipl_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnrlastofmultipl_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2_DRIVEALONE_univ,-1.0467106607934311,F +coef_calib_tours2_SHARED2_univ,-0.9345649530318371,F +coef_calib_tours2_SHARED3_univ,-30.0,F +coef_calib_tours2_WALK_univ,-5.474015479736969,F +coef_calib_tours2_BIKE_univ,-30.0,F +coef_calib_tours2_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2_TAXI_univ,-30.0,F +coef_calib_tours2_TNC_SINGLE_univ,-30.0,F +coef_calib_tours2_TNC_SHARED_univ,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_univ,-3.2105,F +coef_calib_tours2totstops0_SHARED3_univ,-30.0,F +coef_calib_tours2totstops0_WALK_univ,-3.2105,F +coef_calib_tours2totstops0_BIKE_univ,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2totstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2totstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2totstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_DRIVEALONE_univ,-1.2971,F +coef_calib_tours2firstofmultipl_SHARED3_univ,-30.0,F +coef_calib_tours2firstofmultipl_WALK_univ,-1.2971,F +coef_calib_tours2firstofmultipl_BIKE_univ,-30.0,F +coef_calib_tours2firstofmultipl_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_DRIVEALONE_univ,-0.7345,F +coef_calib_tours2lastofmultiple_SHARED3_univ,-30.0,F +coef_calib_tours2lastofmultiple_WALK_univ,-0.7345,F +coef_calib_tours2lastofmultiple_BIKE_univ,-30.0,F +coef_calib_tours2lastofmultiple_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3_DRIVEALONE_univ,-0.4966596160422635,F +coef_calib_tours3_SHARED2_univ,-0.7052619965484133,F +coef_calib_tours3_SHARED3_univ,-0.8015588902246543,F +coef_calib_tours3_WALK_univ,-9.331800000000001,F +coef_calib_tours3_BIKE_univ,-30.0,F +coef_calib_tours3_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3_TAXI_univ,-30.0,F +coef_calib_tours3_TNC_SINGLE_univ,-30.0,F +coef_calib_tours3_TNC_SHARED_univ,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_univ,-1.893,F +coef_calib_tours3totstops0_SHARED2_univ,-1.893,F +coef_calib_tours3totstops0_WALK_univ,-1.893,F +coef_calib_tours3totstops0_BIKE_univ,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3totstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3totstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3totstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_DRIVEALONE_univ,-1.7826,F +coef_calib_tours3firstofmultipl_SHARED2_univ,-1.7826,F +coef_calib_tours3firstofmultipl_WALK_univ,-1.7826,F +coef_calib_tours3firstofmultipl_BIKE_univ,-30.0,F +coef_calib_tours3firstofmultipl_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_DRIVEALONE_univ,-1.1489,F +coef_calib_tours3lastofmultiple_SHARED2_univ,-1.1489,F +coef_calib_tours3lastofmultiple_WALK_univ,-1.1489,F +coef_calib_tours3lastofmultiple_BIKE_univ,-30.0,F +coef_calib_tours3lastofmultiple_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourtnr_DRIVEALONE_univ,-30.0,F +coef_calib_tourtnr_BIKE_univ,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_DRIVEALONE_univ,-6.689857452657601,F +coef_calib_tourwtran_SHARED2_univ,-6.341063912284481,F +coef_calib_tourwtran_SHARED3_univ,-6.479108855088794,F +coef_calib_tourwtran_WALK_univ,1.1152453787942982,F +coef_calib_tourwtran_BIKE_univ,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_univ,0.09439231570910812,F +coef_calib_tourwtran_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_TAXI_univ,-6.69,F +coef_calib_tourwtran_TNC_SINGLE_univ,22.94,F +coef_calib_tourwtran_TNC_SHARED_univ,-7.69,F +coef_calib_tourwtrantotstops0_DRIVEALONE_univ,-30.0,F +coef_calib_tourwtrantotstops0_BIKE_univ,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_univ,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_univ,0.4204,F +coef_calib_tourwtranfirstofmult_SHARED3_univ,0.4204,F +coef_calib_tourwtranfirstofmult_WALK_univ,0.4204,F +coef_calib_tourwtranfirstofmult_BIKE_univ,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwtranlastofmulti_DRIVEALONE_univ,-30.0,F +coef_calib_tourwtranlastofmulti_BIKE_univ,-30.0,F +coef_calib_tourwtranlastofmulti_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranlastofmulti_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranlastofmulti_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_DRIVEALONE_univ,-30.0,F +coef_calib_tourwalk_SHARED2_univ,-30.0,F +coef_calib_tourwalk_SHARED3_univ,-30.0,F +coef_calib_tourwalk_BIKE_univ,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_TAXI_univ,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_univ,-30.0,F +coef_calib_tourwalk_TNC_SHARED_univ,-30.0,F +coef_calib_civtebikeownershipma_BIKE_school,1.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_school,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_school,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_school,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_school,1.0,F +coef_calib_tourbike_DRIVEALONE_school,-30.0,F +coef_calib_tourbike_SHARED2_school,0.0,F +coef_calib_tourbike_SHARED3_school,0.0,F +coef_calib_tourbike_WALK_school,-17.252948252633765,F +coef_calib_tourbike_BIKE_school,-16.603217615727758,F +coef_calib_tourbike_WALK_TRANSIT_school,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_school,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_school,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_school,-30.0,F +coef_calib_tourbike_TAXI_school,-30.0,F +coef_calib_tourbike_TNC_SINGLE_school,-30.0,F +coef_calib_tourbike_TNC_SHARED_school,-30.0,F +coef_calib_tourbike_SCH_BUS_school,-30.0,F +coef_calib_tourda_SHARED2_school,-30.0,F +coef_calib_tourda_SHARED3_school,-30.0,F +coef_calib_tourda_WALK_school,-30.0,F +coef_calib_tourda_BIKE_school,-30.0,F +coef_calib_tourda_WALK_TRANSIT_school,-30.0,F +coef_calib_tourda_PNR_TRANSIT_school,-30.0,F +coef_calib_tourda_KNR_TRANSIT_school,-30.0,F +coef_calib_tourda_TNC_TRANSIT_school,-30.0,F +coef_calib_tourda_TAXI_school,-30.0,F +coef_calib_tourda_TNC_SINGLE_school,-30.0,F +coef_calib_tourda_TNC_SHARED_school,-30.0,F +coef_calib_tourda_SCH_BUS_school,-30.0,F +coef_calib_tourknr_DRIVEALONE_school,-30.0,F +coef_calib_tourknr_SHARED2_school,-1.7329,F +coef_calib_tourknr_SHARED3_school,-1.18,F +coef_calib_tourknr_WALK_school,4.8676,F +coef_calib_tourknr_BIKE_school,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_school,24.9347,F +coef_calib_tourknr_PNR_TRANSIT_school,-30.0,F +coef_calib_tourknr_KNR_TRANSIT_school,-27.4507,F +coef_calib_tourknr_TAXI_school,-30.0,F +coef_calib_tourknr_TNC_SINGLE_school,-30.0,F +coef_calib_tourknr_TNC_SHARED_school,-30.0,F +coef_calib_tourknr_SCH_BUS_school,-30.0,F +coef_calib_tourpnr_DRIVEALONE_school,-2.9471,F +coef_calib_tourpnr_SHARED2_school,-1.5651,F +coef_calib_tourpnr_SHARED3_school,-2.419,F +coef_calib_tourpnr_WALK_school,-30.0,F +coef_calib_tourpnr_BIKE_school,-30.0,F +coef_calib_tourpnr_WALK_TRANSIT_school,-30.0,F +coef_calib_tourpnr_KNR_TRANSIT_school,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_school,-30.0,F +coef_calib_tourpnr_TAXI_school,-30.0,F +coef_calib_tourpnr_TNC_SINGLE_school,-30.0,F +coef_calib_tourpnr_TNC_SHARED_school,-30.0,F +coef_calib_tourpnr_SCH_BUS_school,-30.0,F +coef_calib_tours2_DRIVEALONE_school,-30.0,F +coef_calib_tours2_SHARED2_school,-5.44528416304262,F +coef_calib_tours2_SHARED3_school,-30.0,F +coef_calib_tours2_WALK_school,-8.768360236119591,F +coef_calib_tours2_BIKE_school,-30.0,F +coef_calib_tours2_WALK_TRANSIT_school,-30.0,F +coef_calib_tours2_PNR_TRANSIT_school,-30.0,F +coef_calib_tours2_KNR_TRANSIT_school,-30.0,F +coef_calib_tours2_TNC_TRANSIT_school,-30.0,F +coef_calib_tours2_TAXI_school,-30.0,F +coef_calib_tours2_TNC_SINGLE_school,-30.0,F +coef_calib_tours2_TNC_SHARED_school,-30.0,F +coef_calib_tours2_SCH_BUS_school,-30.0,F +coef_calib_tours3_DRIVEALONE_school,-30.0,F +coef_calib_tours3_SHARED2_school,-3.260738776679035,F +coef_calib_tours3_SHARED3_school,-2.893606747836543,F +coef_calib_tours3_WALK_school,-2.682750615187065,F +coef_calib_tours3_BIKE_school,-30.0,F +coef_calib_tours3_WALK_TRANSIT_school,-30.0,F +coef_calib_tours3_PNR_TRANSIT_school,-30.0,F +coef_calib_tours3_KNR_TRANSIT_school,-30.0,F +coef_calib_tours3_TNC_TRANSIT_school,-30.0,F +coef_calib_tours3_TAXI_school,-30.0,F +coef_calib_tours3_TNC_SINGLE_school,-30.0,F +coef_calib_tours3_TNC_SHARED_school,-30.0,F +coef_calib_tours3_SCH_BUS_school,-30.0,F +coef_calib_tourschbus_DRIVEALONE_school,-30.0,F +coef_calib_tourschbus_SHARED2_school,-30.0,F +coef_calib_tourschbus_SHARED3_school,-30.0,F +coef_calib_tourschbus_WALK_school,-30.0,F +coef_calib_tourschbus_BIKE_school,-30.0,F +coef_calib_tourschbus_WALK_TRANSIT_school,-30.0,F +coef_calib_tourschbus_PNR_TRANSIT_school,-30.0,F +coef_calib_tourschbus_KNR_TRANSIT_school,-30.0,F +coef_calib_tourschbus_TNC_TRANSIT_school,-30.0,F +coef_calib_tourschbus_TAXI_school,-30.0,F +coef_calib_tourschbus_TNC_SINGLE_school,-30.0,F +coef_calib_tourschbus_TNC_SHARED_school,-30.0,F +coef_calib_tourwtran_DRIVEALONE_school,-10.0,F +coef_calib_tourwtran_SHARED2_school,-5.014717325674122,F +coef_calib_tourwtran_SHARED3_school,-2.5893694543407273,F +coef_calib_tourwtran_WALK_school,-13.1126,F +coef_calib_tourwtran_BIKE_school,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_school,-1.0648104626473114,F +coef_calib_tourwtran_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtran_TAXI_school,-30.0,F +coef_calib_tourwtran_TNC_SINGLE_school,-30.0,F +coef_calib_tourwtran_TNC_SHARED_school,-30.0,F +coef_calib_tourwtran_SCH_BUS_school,-30.0,F +coef_calib_tourwtrantotstops0_DRIVEALONE_school,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_school,-1.706,F +coef_calib_tourwtrantotstops0_SHARED3_school,-1.706,F +coef_calib_tourwtrantotstops0_WALK_school,-1.706,F +coef_calib_tourwtrantotstops0_BIKE_school,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtrantotstops0_SCH_BUS_school,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_school,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_school,0.921,F +coef_calib_tourwtranfirstofmult_SHARED3_school,0.921,F +coef_calib_tourwtranfirstofmult_WALK_school,0.921,F +coef_calib_tourwtranfirstofmult_BIKE_school,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtranfirstofmult_SCH_BUS_school,-30.0,F +coef_calib_tourwtranlastofmulti_DRIVEALONE_school,-30.0,F +coef_calib_tourwtranlastofmulti_SHARED2_school,1.58,F +coef_calib_tourwtranlastofmulti_SHARED3_school,1.58,F +coef_calib_tourwtranlastofmulti_WALK_school,1.58,F +coef_calib_tourwtranlastofmulti_BIKE_school,-30.0,F +coef_calib_tourwtranlastofmulti_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranlastofmulti_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranlastofmulti_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtranlastofmulti_SCH_BUS_school,-30.0,F +coef_calib_tourwalk_DRIVEALONE_school,-30.0,F +coef_calib_tourwalk_SHARED2_school,-30.0,F +coef_calib_tourwalk_SHARED3_school,-30.0,F +coef_calib_tourwalk_BIKE_school,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_school,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwalk_TAXI_school,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_school,-30.0,F +coef_calib_tourwalk_TNC_SHARED_school,-30.0,F +coef_calib_tourwalk_SCH_BUS_school,-30.0,F +coef_calib_numberofparticipants_SHARED3_maint,-0.11,F +coef_calib_civtebikeownershipma_BIKE_maint,1.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_maint,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_maint,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_maint,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_maint,1.0,F +coef_calib_esctour1_WALK_maint,-1.27,F +coef_calib_jointtour1_WALK_maint,-1.669,F +coef_calib_jointtour1_WALK_TRANSIT_maint,-0.824,F +coef_calib_jointtour1_PNR_TRANSIT_maint,-1.629,F +coef_calib_jointtour1_KNR_TRANSIT_maint,-1.629,F +coef_calib_jointtour1_TNC_TRANSIT_maint,-1.629,F +coef_calib_tourbike_DRIVEALONE_maint,-30.0,F +coef_calib_tourbike_SHARED2_maint,0.0,F +coef_calib_tourbike_SHARED3_maint,0.0,F +coef_calib_tourbike_WALK_maint,-20.0,F +coef_calib_tourbike_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourbikejointtour0_SHARED2_maint,0.0,F +coef_calib_tourbikejointtour0_SHARED3_maint,0.0,F +coef_calib_tourbikejointtour0_WALK_maint,-30.0,F +coef_calib_tourbikejointtour0_BIKE_maint,-10.500258951012205,F +coef_calib_tourbikejointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_TAXI_maint,-30.0,F +coef_calib_tourbikejointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourbikejointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourbikejointtour1_BIKE_maint,-0.31,F +coef_calib_tourbikejointtour1_TAXI_maint,-30.0,F +coef_calib_tourbikejointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourbikejointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourda_SHARED2_maint,-30.0,F +coef_calib_tourda_SHARED3_maint,-30.0,F +coef_calib_tourda_WALK_maint,-30.0,F +coef_calib_tourda_BIKE_maint,-30.0,F +coef_calib_tourda_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourda_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourda_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourda_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_DRIVEALONE_maint,0.32660647324783104,F +coef_calib_tourdajointtour0_SHARED2_maint,-30.0,F +coef_calib_tourdajointtour0_SHARED3_maint,-30.0,F +coef_calib_tourdajointtour0_WALK_maint,-30.0,F +coef_calib_tourdajointtour0_BIKE_maint,-30.0,F +coef_calib_tourdajointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_TAXI_maint,-30.0,F +coef_calib_tourdajointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourdajointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourdajointtour1_SHARED2_maint,-30.0,F +coef_calib_tourdajointtour1_SHARED3_maint,-30.0,F +coef_calib_tourdajointtour1_WALK_maint,-30.0,F +coef_calib_tourdajointtour1_BIKE_maint,-30.0,F +coef_calib_tourdajointtour1_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_TAXI_maint,-30.0,F +coef_calib_tourdajointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourdajointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourknr_DRIVEALONE_maint,-30.0,F +coef_calib_tourknr_BIKE_maint,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_maint,2.159,F +coef_calib_tourknr_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrjointtour0_SHARED2_maint,8.6939,F +coef_calib_tourknrjointtour0_SHARED3_maint,8.8007,F +coef_calib_tourknrjointtour0_WALK_maint,-4.3153,F +coef_calib_tourknrjointtour0_BIKE_maint,-30.0,F +coef_calib_tourknrjointtour0_WALK_TRANSIT_maint,7.390431703,F +coef_calib_tourknrjointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour0_KNR_TRANSIT_maint,0.5605618505808558,F +coef_calib_tourknrjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour0_TAXI_maint,-30.0,F +coef_calib_tourknrjointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourknrjointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourknrjointtour1_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrjointtour1_BIKE_maint,-30.0,F +coef_calib_tourknrjointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour1_TAXI_maint,-30.0,F +coef_calib_tourknrjointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourknrjointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_maint,-10.0,F +coef_calib_tourknrtotstops0_SHARED3_maint,-10.0,F +coef_calib_tourknrtotstops0_WALK_maint,-30.0,F +coef_calib_tourknrtotstops0_BIKE_maint,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrtotstopsm0_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrtotstopsm0_BIKE_maint,-30.0,F +coef_calib_tourknrtotstopsm0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_DRIVEALONE_maint,-30.0,F +coef_calib_tourmaas_BIKE_maint,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_TAXI_maint,-2.3,F +coef_calib_tourmaas_TNC_SINGLE_maint,0.73,F +coef_calib_tourmaas_TNC_SHARED_maint,-1.3,F +coef_calib_tourmaasjointtour0_SHARED2_maint,-30.12,F +coef_calib_tourmaasjointtour0_SHARED3_maint,-31.55,F +coef_calib_tourmaasjointtour0_WALK_maint,-26.14,F +coef_calib_tourmaasjointtour0_TAXI_maint,6.404988840099761,F +coef_calib_tourmaasjointtour0_TNC_SINGLE_maint,1.4695282807200076,F +coef_calib_tourmaasjointtour0_TNC_SHARED_maint,-4.02,F +coef_calib_tourmaasjointtour1_SHARED2_maint,1.92,F +coef_calib_tourmaasjointtour1_WALK_maint,-2.69,F +coef_calib_tourmaasjointtour1_TNC_SINGLE_maint,-25.2,F +coef_calib_tourmaasjointtour1_TNC_SHARED_maint,2.04,F +coef_calib_tourpnr_BIKE_maint,-30.0,F +coef_calib_tourpnr_WALK_TRANSIT_maint,1.584,F +coef_calib_tourpnr_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour0_DRIVEALONE_maint,-6.8467,F +coef_calib_tourpnrjointtour0_SHARED2_maint,-7.3704,F +coef_calib_tourpnrjointtour0_SHARED3_maint,-11.0441,F +coef_calib_tourpnrjointtour0_WALK_maint,-9.9546,F +coef_calib_tourpnrjointtour0_BIKE_maint,-30.0,F +coef_calib_tourpnrjointtour0_WALK_TRANSIT_maint,-8.4007,F +coef_calib_tourpnrjointtour0_PNR_TRANSIT_maint,-1.4144786765104174,F +coef_calib_tourpnrjointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour0_TAXI_maint,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourpnrjointtour1_BIKE_maint,-30.0,F +coef_calib_tourpnrjointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour1_TAXI_maint,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_maint,-10.0,F +coef_calib_tourpnrtotstops0_SHARED2_maint,-30.0,F +coef_calib_tourpnrtotstops0_SHARED3_maint,-30.0,F +coef_calib_tourpnrtotstops0_WALK_maint,-30.0,F +coef_calib_tourpnrtotstops0_BIKE_maint,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_BIKE_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2_DRIVEALONE_maint,-0.656,F +coef_calib_tours2_SHARED3_maint,-30.0,F +coef_calib_tours2_WALK_maint,-2.2366,F +coef_calib_tours2_BIKE_maint,-30.0,F +coef_calib_tours2_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours2_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours2_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours2_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_DRIVEALONE_maint,1.3106952326448469,F +coef_calib_tours2jointtour0_SHARED2_maint,1.0037024718823004,F +coef_calib_tours2jointtour0_SHARED3_maint,-30.0,F +coef_calib_tours2jointtour0_WALK_maint,1.0962594370533987,F +coef_calib_tours2jointtour0_BIKE_maint,-30.0,F +coef_calib_tours2jointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_TAXI_maint,-30.0,F +coef_calib_tours2jointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tours2jointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tours2jointtour1_DRIVEALONE_maint,0.0861,F +coef_calib_tours2jointtour1_SHARED3_maint,-30.0,F +coef_calib_tours2jointtour1_WALK_maint,-7.078424660896279,F +coef_calib_tours2jointtour1_BIKE_maint,-30.0,F +coef_calib_tours2jointtour1_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_TAXI_maint,-30.0,F +coef_calib_tours2jointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tours2jointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tours3_DRIVEALONE_maint,-0.452,F +coef_calib_tours3_WALK_maint,-1.5731,F +coef_calib_tours3_BIKE_maint,-30.0,F +coef_calib_tours3_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours3_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours3_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours3_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_DRIVEALONE_maint,1.1044212959375723,F +coef_calib_tours3jointtour0_SHARED2_maint,0.8563886856236229,F +coef_calib_tours3jointtour0_SHARED3_maint,0.5094228907551963,F +coef_calib_tours3jointtour0_WALK_maint,0.44039869543269305,F +coef_calib_tours3jointtour0_BIKE_maint,-30.0,F +coef_calib_tours3jointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_TAXI_maint,-30.0,F +coef_calib_tours3jointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tours3jointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tours3jointtour1_DRIVEALONE_maint,-0.1811,F +coef_calib_tours3jointtour1_SHARED2_maint,23.11576844,F +coef_calib_tours3jointtour1_SHARED3_maint,-0.11240160385167762,F +coef_calib_tours3jointtour1_WALK_maint,-3.1775819454987086,F +coef_calib_tours3jointtour1_BIKE_maint,-30.0,F +coef_calib_tours3jointtour1_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_TAXI_maint,-30.0,F +coef_calib_tours3jointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tours3jointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tours3autodeficienth_SHARED2_maint,-0.324,F +coef_calib_tours3zeroautohh_SHARED2_maint,-1.469,F +coef_calib_tourtnr_DRIVEALONE_maint,-30.0,F +coef_calib_tourtnr_BIKE_maint,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtran_DRIVEALONE_maint,-10.0,F +coef_calib_tourwtran_SHARED2_maint,-3.437,F +coef_calib_tourwtran_SHARED3_maint,-4.71,F +coef_calib_tourwtran_WALK_maint,2.848,F +coef_calib_tourwtran_BIKE_maint,-30.0,F +coef_calib_tourwtran_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtranjointtour0_SHARED2_maint,-2.859522433166758,F +coef_calib_tourwtranjointtour0_SHARED3_maint,-2.7038682724988528,F +coef_calib_tourwtranjointtour0_WALK_maint,-7.4494210899125815,F +coef_calib_tourwtranjointtour0_BIKE_maint,-30.0,F +coef_calib_tourwtranjointtour0_WALK_TRANSIT_maint,-1.1214609100489512,F +coef_calib_tourwtranjointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_TNC_SINGLE_maint,34.31241802020134,F +coef_calib_tourwtranjointtour0_TNC_SHARED_maint,-10.41,F +coef_calib_tourwtranjointtour1_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtranjointtour1_SHARED2_maint,-5.437101753,F +coef_calib_tourwtranjointtour1_SHARED3_maint,-18.95675834,F +coef_calib_tourwtranjointtour1_WALK_maint,-21.494345343,F +coef_calib_tourwtranjointtour1_BIKE_maint,-30.0,F +coef_calib_tourwtranjointtour1_WALK_TRANSIT_maint,-19.642763791,F +coef_calib_tourwtranjointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour1_TAXI_maint,-8.28,F +coef_calib_tourwtranjointtour1_TNC_SINGLE_maint,-2.95,F +coef_calib_tourwtranjointtour1_TNC_SHARED_maint,-9.280000000000001,F +coef_calib_tourwtrantotstops0_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_maint,-1.5218,F +coef_calib_tourwtrantotstops0_SHARED3_maint,-1.5218,F +coef_calib_tourwtrantotstops0_WALK_maint,-1.5218,F +coef_calib_tourwtrantotstops0_BIKE_maint,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_maint,-1.477,F +coef_calib_tourwtranfirstofmult_SHARED3_maint,-1.477,F +coef_calib_tourwtranfirstofmult_WALK_maint,-1.477,F +coef_calib_tourwtranfirstofmult_BIKE_maint,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranzeroautohh_WALK_maint,1.424,F +coef_calib_tourwalk_DRIVEALONE_maint,-30.0,F +coef_calib_tourwalk_SHARED2_maint,-30.0,F +coef_calib_tourwalk_SHARED3_maint,-30.0,F +coef_calib_tourwalk_BIKE_maint,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourwalkjointtour0_SHARED2_maint,-30.0,F +coef_calib_tourwalkjointtour0_SHARED3_maint,-30.0,F +coef_calib_tourwalkjointtour0_WALK_maint,1.6462845772761598,F +coef_calib_tourwalkjointtour0_BIKE_maint,-30.0,F +coef_calib_tourwalkjointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_TAXI_maint,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourwalkjointtour1_TAXI_maint,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_civtebikeownershipma_BIKE_disc,1.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_disc,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_disc,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_disc,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_disc,1.0,F +coef_calib_tourbike_DRIVEALONE_disc,-30.0,F +coef_calib_tourbike_SHARED2_disc,0.0,F +coef_calib_tourbike_SHARED3_disc,0.0,F +coef_calib_tourbike_WALK_disc,-20.0,F +coef_calib_tourbike_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourbikejointtour0_SHARED2_disc,-30.0,F +coef_calib_tourbikejointtour0_SHARED3_disc,-30.0,F +coef_calib_tourbikejointtour0_WALK_disc,-30.0,F +coef_calib_tourbikejointtour0_BIKE_disc,-2.8371334245691715,F +coef_calib_tourbikejointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_TAXI_disc,-30.0,F +coef_calib_tourbikejointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourbikejointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourbikejointtour1_BIKE_disc,-1.55,F +coef_calib_tourbikejointtour1_TAXI_disc,-30.0,F +coef_calib_tourbikejointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourbikejointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourda_SHARED2_disc,-30.0,F +coef_calib_tourda_SHARED3_disc,-30.0,F +coef_calib_tourda_WALK_disc,-30.0,F +coef_calib_tourda_BIKE_disc,-30.0,F +coef_calib_tourda_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourda_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourda_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourda_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_DRIVEALONE_disc,0.05046829276861734,F +coef_calib_tourdajointtour0_SHARED2_disc,-30.0,F +coef_calib_tourdajointtour0_SHARED3_disc,-30.0,F +coef_calib_tourdajointtour0_WALK_disc,-30.0,F +coef_calib_tourdajointtour0_BIKE_disc,-30.0,F +coef_calib_tourdajointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_TAXI_disc,-30.0,F +coef_calib_tourdajointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourdajointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourdajointtour1_SHARED2_disc,-30.0,F +coef_calib_tourdajointtour1_SHARED3_disc,-30.0,F +coef_calib_tourdajointtour1_WALK_disc,-30.0,F +coef_calib_tourdajointtour1_BIKE_disc,-30.0,F +coef_calib_tourdajointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_TAXI_disc,-30.0,F +coef_calib_tourdajointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourdajointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourknrjointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrjointtour0_SHARED2_disc,0.7499,F +coef_calib_tourknrjointtour0_SHARED3_disc,1.4961,F +coef_calib_tourknrjointtour0_WALK_disc,0.4389,F +coef_calib_tourknrjointtour0_BIKE_disc,-30.0,F +coef_calib_tourknrjointtour0_WALK_TRANSIT_disc,46.2844,F +coef_calib_tourknrjointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourknrjointtour0_KNR_TRANSIT_disc,1.82463921614539,F +coef_calib_tourknrjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourknrjointtour0_TAXI_disc,-30.0,F +coef_calib_tourknrjointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourknrjointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourknrjointtour1_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrjointtour1_BIKE_disc,-30.0,F +coef_calib_tourknrjointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourknrjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_disc,-10.0,F +coef_calib_tourknrtotstops0_SHARED3_disc,-10.0,F +coef_calib_tourknrtotstops0_WALK_disc,-30.0,F +coef_calib_tourknrtotstops0_BIKE_disc,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourknrtotstopsm0_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrtotstopsm0_BIKE_disc,-30.0,F +coef_calib_tourknrtotstopsm0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_DRIVEALONE_disc,-30.0,F +coef_calib_tourmaas_BIKE_disc,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_TAXI_disc,0.02,F +coef_calib_tourmaas_TNC_SINGLE_disc,2.53,F +coef_calib_tourmaas_TNC_SHARED_disc,1.02,F +coef_calib_tourmaasjointtour0_SHARED2_disc,-1.37,F +coef_calib_tourmaasjointtour0_SHARED3_disc,-0.77,F +coef_calib_tourmaasjointtour0_WALK_disc,1.77,F +coef_calib_tourmaasjointtour0_TAXI_disc,3.2847189567147628,F +coef_calib_tourmaasjointtour0_TNC_SINGLE_disc,-4.197345793267215,F +coef_calib_tourmaasjointtour0_TNC_SHARED_disc,-2.27,F +coef_calib_tourmaasjointtour1_SHARED2_disc,-0.14,F +coef_calib_tourmaasjointtour1_SHARED3_disc,-0.01,F +coef_calib_tourmaasjointtour1_WALK_disc,2.44,F +coef_calib_tourmaasjointtour1_TNC_SINGLE_disc,-27.82,F +coef_calib_tourpnrjointtour0_DRIVEALONE_disc,-6.6205,F +coef_calib_tourpnrjointtour0_SHARED2_disc,-0.8124,F +coef_calib_tourpnrjointtour0_SHARED3_disc,-0.4849,F +coef_calib_tourpnrjointtour0_WALK_disc,1.0992,F +coef_calib_tourpnrjointtour0_BIKE_disc,-30.0,F +coef_calib_tourpnrjointtour0_WALK_TRANSIT_disc,10.1369,F +coef_calib_tourpnrjointtour0_PNR_TRANSIT_disc,-0.7682535395283122,F +coef_calib_tourpnrjointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour0_TAXI_disc,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourpnrjointtour1_BIKE_disc,-30.0,F +coef_calib_tourpnrjointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour1_TAXI_disc,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_disc,-10.0,F +coef_calib_tourpnrtotstops0_SHARED2_disc,-30.0,F +coef_calib_tourpnrtotstops0_SHARED3_disc,-30.0,F +coef_calib_tourpnrtotstops0_WALK_disc,-30.0,F +coef_calib_tourpnrtotstops0_BIKE_disc,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_BIKE_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2_DRIVEALONE_disc,-0.688,F +coef_calib_tours2_SHARED3_disc,-30.0,F +coef_calib_tours2_WALK_disc,1.854,F +coef_calib_tours2_BIKE_disc,-30.0,F +coef_calib_tours2_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_DRIVEALONE_disc,1.3711251281897145,F +coef_calib_tours2jointtour0_SHARED2_disc,0.5534376307334923,F +coef_calib_tours2jointtour0_SHARED3_disc,-30.0,F +coef_calib_tours2jointtour0_WALK_disc,-2.5572214336369505,F +coef_calib_tours2jointtour0_BIKE_disc,-30.0,F +coef_calib_tours2jointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_TAXI_disc,-30.0,F +coef_calib_tours2jointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tours2jointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tours2jointtour1_DRIVEALONE_disc,-0.0787,F +coef_calib_tours2jointtour1_SHARED2_disc,0.006192950906288385,F +coef_calib_tours2jointtour1_SHARED3_disc,-30.0,F +coef_calib_tours2jointtour1_WALK_disc,-3.508924660896279,F +coef_calib_tours2jointtour1_BIKE_disc,-30.0,F +coef_calib_tours2jointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_TAXI_disc,-30.0,F +coef_calib_tours2jointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tours2jointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_disc,-3.241,F +coef_calib_tours2totstops0_SHARED3_disc,-30.0,F +coef_calib_tours2totstops0_WALK_disc,-3.241,F +coef_calib_tours2totstops0_BIKE_disc,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2totstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2totstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2totstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_DRIVEALONE_disc,0.807,F +coef_calib_tours2firstofmultipl_SHARED3_disc,-30.0,F +coef_calib_tours2firstofmultipl_WALK_disc,0.807,F +coef_calib_tours2firstofmultipl_BIKE_disc,-30.0,F +coef_calib_tours2firstofmultipl_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3_DRIVEALONE_disc,-1.73,F +coef_calib_tours3_SHARED2_disc,-1.247,F +coef_calib_tours3_WALK_disc,0.878,F +coef_calib_tours3_BIKE_disc,-30.0,F +coef_calib_tours3_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_DRIVEALONE_disc,1.5214985313922953,F +coef_calib_tours3jointtour0_SHARED2_disc,0.4519608857673781,F +coef_calib_tours3jointtour0_SHARED3_disc,0.7339852484782727,F +coef_calib_tours3jointtour0_WALK_disc,0.899554825327642,F +coef_calib_tours3jointtour0_BIKE_disc,-30.0,F +coef_calib_tours3jointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_TAXI_disc,-30.0,F +coef_calib_tours3jointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tours3jointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tours3jointtour1_DRIVEALONE_disc,-0.1763,F +coef_calib_tours3jointtour1_SHARED2_disc,22.85936844,F +coef_calib_tours3jointtour1_WALK_disc,-1.4200819454987088,F +coef_calib_tours3jointtour1_BIKE_disc,-30.0,F +coef_calib_tours3jointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_TAXI_disc,-30.0,F +coef_calib_tours3jointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tours3jointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_disc,-1.773,F +coef_calib_tours3totstops0_SHARED2_disc,-1.773,F +coef_calib_tours3totstops0_WALK_disc,-1.773,F +coef_calib_tours3totstops0_BIKE_disc,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3totstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3totstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3totstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_DRIVEALONE_disc,0.397,F +coef_calib_tours3firstofmultipl_SHARED2_disc,0.397,F +coef_calib_tours3firstofmultipl_WALK_disc,0.397,F +coef_calib_tours3firstofmultipl_BIKE_disc,-30.0,F +coef_calib_tours3firstofmultipl_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourtnr_DRIVEALONE_disc,-30.0,F +coef_calib_tourtnr_BIKE_disc,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtran_DRIVEALONE_disc,-7.0,F +coef_calib_tourwtran_SHARED2_disc,-6.223,F +coef_calib_tourwtran_SHARED3_disc,-6.0,F +coef_calib_tourwtran_WALK_disc,2.418,F +coef_calib_tourwtran_BIKE_disc,-30.0,F +coef_calib_tourwtran_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtranjointtour0_SHARED2_disc,-6.0,F +coef_calib_tourwtranjointtour0_SHARED3_disc,-6.0,F +coef_calib_tourwtranjointtour0_WALK_disc,-9.820499722690379,F +coef_calib_tourwtranjointtour0_BIKE_disc,-30.0,F +coef_calib_tourwtranjointtour0_WALK_TRANSIT_disc,-5.634512572937531,F +coef_calib_tourwtranjointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_TNC_SINGLE_disc,27.74,F +coef_calib_tourwtranjointtour1_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtranjointtour1_SHARED3_disc,-14.95676,F +coef_calib_tourwtranjointtour1_WALK_disc,-27.2353935,F +coef_calib_tourwtranjointtour1_BIKE_disc,-30.0,F +coef_calib_tourwtranjointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour1_TAXI_disc,-8.33,F +coef_calib_tourwtranjointtour1_TNC_SINGLE_disc,-4.53,F +coef_calib_tourwtranjointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourwtrantotstops0_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_disc,-3.06,F +coef_calib_tourwtrantotstops0_SHARED3_disc,-3.06,F +coef_calib_tourwtrantotstops0_WALK_disc,-3.06,F +coef_calib_tourwtrantotstops0_BIKE_disc,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_disc,-3.045,F +coef_calib_tourwtranfirstofmult_SHARED3_disc,-3.045,F +coef_calib_tourwtranfirstofmult_WALK_disc,-3.045,F +coef_calib_tourwtranfirstofmult_BIKE_disc,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_DRIVEALONE_disc,-30.0,F +coef_calib_tourwalk_SHARED2_disc,-30.0,F +coef_calib_tourwalk_SHARED3_disc,-30.0,F +coef_calib_tourwalk_BIKE_disc,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourwalkjointtour0_SHARED2_disc,-30.0,F +coef_calib_tourwalkjointtour0_SHARED3_disc,-30.0,F +coef_calib_tourwalkjointtour0_WALK_disc,1.1284402519937065,F +coef_calib_tourwalkjointtour0_BIKE_disc,-30.0,F +coef_calib_tourwalkjointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_TAXI_disc,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourwalkjointtour1_DRIVEALONE_disc,-30.0,F +coef_calib_tourwalkjointtour1_SHARED2_disc,-30.0,F +coef_calib_tourwalkjointtour1_SHARED3_disc,-30.0,F +coef_calib_tourwalkjointtour1_BIKE_disc,-30.0,F +coef_calib_tourwalkjointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_TAXI_disc,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_atwork,1.0,F +coef_calib_tourbike_DRIVEALONE_atwork,-30.0,F +coef_calib_tourbike_SHARED2_atwork,0.0,F +coef_calib_tourbike_SHARED3_atwork,0.0,F +coef_calib_tourbike_WALK_atwork,-5.5897134151007,F +coef_calib_tourbike_BIKE_atwork,-5.36914703002003,F +coef_calib_tourbike_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourbike_TAXI_atwork,-30.0,F +coef_calib_tourbike_TNC_SINGLE_atwork,-30.0,F +coef_calib_tourbike_TNC_SHARED_atwork,-30.0,F +coef_calib_tourda_SHARED2_atwork,-30.0,F +coef_calib_tourda_SHARED3_atwork,-30.0,F +coef_calib_tourda_WALK_atwork,-30.0,F +coef_calib_tourda_BIKE_atwork,-30.0,F +coef_calib_tourda_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourda_TAXI_atwork,-30.0,F +coef_calib_tourda_TNC_SINGLE_atwork,-30.0,F +coef_calib_tourda_TNC_SHARED_atwork,-30.0,F +coef_calib_tourmaas_DRIVEALONE_atwork,-30.0,F +coef_calib_tourmaas_SHARED2_atwork,-3.54,F +coef_calib_tourmaas_SHARED3_atwork,0.69,F +coef_calib_tourmaas_WALK_atwork,-0.63,F +coef_calib_tourmaas_BIKE_atwork,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_TAXI_atwork,-26.12,F +coef_calib_tourmaas_TNC_SINGLE_atwork,-26.04,F +coef_calib_tourmaas_TNC_SHARED_atwork,-2.79,F +coef_calib_tours2_DRIVEALONE_atwork,0.6104330884578978,F +coef_calib_tours2_SHARED2_atwork,0.48830207806157105,F +coef_calib_tours2_SHARED3_atwork,-30.0,F +coef_calib_tours2_WALK_atwork,0.35561239430716407,F +coef_calib_tours2_BIKE_atwork,-30.0,F +coef_calib_tours2_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tours2_TAXI_atwork,-30.0,F +coef_calib_tours2_TNC_SINGLE_atwork,-30.0,F +coef_calib_tours2_TNC_SHARED_atwork,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_atwork,-1.4142,F +coef_calib_tours2totstops0_SHARED3_atwork,-30.0,F +coef_calib_tours2totstops0_WALK_atwork,-1.4142,F +coef_calib_tours2totstops0_BIKE_atwork,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tours3_DRIVEALONE_atwork,1.332060563581082,F +coef_calib_tours3_SHARED2_atwork,-0.2241990970061125,F +coef_calib_tours3_SHARED3_atwork,1.7126980827937628,F +coef_calib_tours3_WALK_atwork,-5.916021459074802,F +coef_calib_tours3_BIKE_atwork,-30.0,F +coef_calib_tours3_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tours3_TAXI_atwork,-30.0,F +coef_calib_tours3_TNC_SINGLE_atwork,-30.0,F +coef_calib_tours3_TNC_SHARED_atwork,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_atwork,-1.7313,F +coef_calib_tours3totstops0_SHARED2_atwork,-1.7313,F +coef_calib_tours3totstops0_WALK_atwork,-1.7313,F +coef_calib_tours3totstops0_BIKE_atwork,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourtnr_DRIVEALONE_atwork,-30.0,F +coef_calib_tourtnr_BIKE_atwork,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_atwork,-30.0,F +coef_calib_tourwtran_DRIVEALONE_atwork,-20.0,F +coef_calib_tourwtran_SHARED2_atwork,-22.0,F +coef_calib_tourwtran_SHARED3_atwork,-22.0,F +coef_calib_tourwtran_WALK_atwork,-9.7479,F +coef_calib_tourwtran_BIKE_atwork,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_atwork,-13.489559480821685,F +coef_calib_tourwtran_TNC_SINGLE_atwork,-0.02,F +coef_calib_tourwalk_DRIVEALONE_atwork,-30.0,F +coef_calib_tourwalk_SHARED2_atwork,-30.0,F +coef_calib_tourwalk_SHARED3_atwork,-30.0,F +coef_calib_tourwalk_BIKE_atwork,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourwalk_TAXI_atwork,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_atwork,-30.0,F +coef_calib_tourwalk_TNC_SHARED_atwork,-30.0,F +coef_calib_tourebikejointtour0_WALK_disc,0.0,F +coef_calib_tourebikejointtour0_WALK_maint,0.0,F +coef_calib_tourebikejointtour1_WALK_disc,0.0,F +coef_calib_tourebikejointtour1_WALK_maint,0.0,F +coef_calib_tourebikejointtour0_EBIKE_disc,0.0,F +coef_calib_tourebikejointtour0_EBIKE_maint,0.020409266,F +coef_calib_tourebikejointtour1_EBIKE_disc,0.0,F +coef_calib_tourebikejointtour1_EBIKE_maint,0.0,F +coef_calib_tourescooterjointtour0_WALK_disc,0.0,F +coef_calib_tourescooterjointtour0_WALK_maint,0.0,F +coef_calib_tourescooterjointtour1_WALK_disc,0.0,F +coef_calib_tourescooterjointtour1_WALK_maint,0.0,F +coef_calib_tourescooterjointtour0_ESCOOTER_disc,0.0,F +coef_calib_tourescooterjointtour0_ESCOOTER_maint,0.0,F +coef_calib_tourescooterjointtour1_ESCOOTER_disc,-28.0,F +coef_calib_tourescooterjointtour1_ESCOOTER_maint,-28.0,F +coef_calib_flexfleet,7.5,F From e5d13e1f2a52d5e4b57413d4f48c5766e60d8d1b Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 10 Mar 2026 14:19:14 -0400 Subject: [PATCH 26/46] Add one weird NMT frequency alt --- resident/configs/non_mandatory_tour_frequency_alternatives.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/resident/configs/non_mandatory_tour_frequency_alternatives.csv b/resident/configs/non_mandatory_tour_frequency_alternatives.csv index e380bcd..77b741b 100644 --- a/resident/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/resident/configs/non_mandatory_tour_frequency_alternatives.csv @@ -198,3 +198,4 @@ escort,shopping,othmaint,eatout,social,othdiscr 2,2,1,0,0,0 2,2,1,0,1,0 1,2,1,1,1,0 +2,1,1,0,1,1 \ No newline at end of file From 0734d1021c6b119374e156f2801a2177cfc671c5 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 11 Mar 2026 11:38:17 -0400 Subject: [PATCH 27/46] Update trip mode choice spec unavail conds for estimation --- .../configs_estimation/trip_mode_choice.csv | 239 ++++++++++++++++++ 1 file changed, 239 insertions(+) create mode 100644 resident/configs_estimation/trip_mode_choice.csv diff --git a/resident/configs_estimation/trip_mode_choice.csv b/resident/configs_estimation/trip_mode_choice.csv new file mode 100644 index 0000000..cc69709 --- /dev/null +++ b/resident/configs_estimation/trip_mode_choice.csv @@ -0,0 +1,239 @@ +Label,Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_TRANSIT,PNR_TRANSIT,KNR_TRANSIT,BIKE_TRANSIT,TAXI,TNC_SINGLE,TNC_SHARED,SCH_BUS,EBIKE,ESCOOTER +#,Drive alone,,,,,,,,,,,,,,,, +util_DRIVEALONEFREE_Unavailable,Drive alone - Unavailable,sov_available == False,-999,,,,,,,,,,,,,, +util_Drive_alone_In_vehicle_time,Drive alone - In-vehicle time,(da_time_skims) * autoIVTFactor * time_factor,coef_ivt,,,,,,,,,,,,,, +util_Drive_alone_cost,Drive alone - cost,"@(df.auto_op_cost * df.autoCPMFactor * df.da_dist_skims + df.da_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Parking_cost,Drive alone - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Terminal_Time,Drive alone - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,coef_acctime,,,,,,,,,,,,,, +#,Shared ride2,,,,,,,,,,,,,,,, +util_sr2_available,sr2 available,sr2_available == False,,-999,,,,,,,,,,,,, +util_sr2_tourbike_disadvantage,sr2 tourbike disadvantage,tourBike,,-30,,,,,,,,,,,,, +util_Shared_ride_2_In_vehicle_time,Shared ride 2 - In -vehicle time,(s2_time_skims) * autoIVTFactor * time_factor,,coef_ivt,,,,,,,,,,,,, +util_Shared_ride_2_cost,Shared ride 2 - cost,"@((df.auto_op_cost * df.autoCPMFactor * df.s2_dist_skims) + df.s2_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Parking_cost,Shared ride 2 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS2))*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Terminal_Time,Shared ride 2 - Terminal Time ,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,coef_acctime,,,,,,,,,,,,, +util_Shared_ride_2_Two_person_household,Shared ride 2 - Two person household,@(df.hhsize == 2),,coef_size2_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Three_person_household,Shared ride 2 - Three person household,@(df.hhsize == 3),,coef_size3_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Four_plus_person_household,Shared ride 2 - Four plus person household,@(df.hhsize > 3),,coef_size4p_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Female,Shared ride 2 - female,@(df.female == 1),,coef_female_sr2,,,,,,,,,,,,, +#,Shared ride 3,,,,,,,,,,,,,,,, +util_sr3_available,sr3 available,sr3_available == False,,,-30,,,,,,,,,,,, +util_sr3_tourbike_disadvantage,sr3 tourbike disadvantage,tourBike,,,-30,,,,,,,,,,,, +util_Shared_ride_3_In_vehicle_time,Shared ride 3 - In -vehicle time,(s3_time_skims) * autoIVTFactor * time_factor,,,coef_ivt,,,,,,,,,,,, +util_Shared_ride_3_Cost,Shared ride 3 - cost,"@(df.auto_op_cost * df.s3_dist_skims * df.autoCPMFactor + df.s3_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Parking_cost,Shared ride 3 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS3))*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Terminal_Time,Shared ride 3 - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,,coef_acctime,,,,,,,,,,,, +util_Shared_ride_3_Two_person_household,Shared ride 3 - Two person household,@(df.hhsize == 2),,,coef_size2_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Three_person_household,Shared ride 3 - Three person household,@(df.hhsize == 3),,,coef_size3_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Four_plus_person_household,Shared ride 3 - Four plus person household,@(df.hhsize > 3),,,coef_size4p_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Female,Shared ride 3 - female,@(df.female == 1),,,coef_female_sr3p,,,,,,,,,,,, +#,Walk,,,,,,,,,,,,,,,, +#,school escorting can force longer walk trips so not turning off completely if walk tour,,,,,,,,,,,,,,,, +util_Walk_Unavailable,Walk - Unavailable,(walkAvailable == 0) & (tourWalk == 0),,,,-30,,,,,,,,,,, +util_Walk_Unavailable_walkTour,Walk - Unavailable - Walk Tour,(walkAvailable == 0) & (tourWalk == 1),,,,-20,,,,,,,,,,, +util_Walk_Female,Walk - Female,@df.female,,,,coef_female_nmot,,,,,,,,,,, +util_Walk_time,Walk - time - clipped for really long walk trips to avoid zero probs,@(df.walk_time_skims * df.time_factor).clip(upper=1000),,,,coef_walkTime,,,,,,,,,,, +util_Walk_Origin_Mix,Walk - Origin Mix,oMGRAMix,,,,coef_oMix_nmot,,,,,,,,,,, +util_Walk_Origin_Intersection_Density,Walk - Origin Intersection Density,oMGRATotInt,,,,coef_oIntDen_nmot,,,,,,,,,,, +util_Walk_Destination_Employment_Density,Walk - Destination Employment Density,dMGRAEmpDen,,,,coef_dEmpDen_nmot,,,,,,,,,,, +util_Walk_Age_1_5,Walk - Age 1-6,"@df.age.between(1,5)",,,,coef_age1to5_nmot,,,,,,,,,,, +util_Walk_Age_6_12,Walk - Age 6-13,"@df.age.between(6,12)",,,,coef_age6to12_nmot,,,,,,,,,,, +util_Walk_Age_13_15,Walk - Age 13-16,"@df.age.between(13,15)",,,,coef_age13to15_nmot,,,,,,,,,,, +#,Bike,,,,,,,,,,,,,,,, +util_BIKE_Mode_unavailable,Bike - Mode unavailable unless on bike tour,@(df.tourBike == 0)|(df.bike_time <= 0),,,,,-999,,,,,,,,,, +util_BIKE_Female,Bike - Female,@df.female,,,,,coef_female_nmot,,,,,,,,,, +util_BIKE_logsum,Bike - logsum clipped to allow for long bike trips on school escort tours,@df.bikeLS.clip(lower=-100),,,,,coef_bikeLogsum,,,,,,,,,, +#,WalktoTransit,,,,,,,,,,,,,,,, +util_WalkTransit_Unavailable,WalkTransit_Available,walk_local_available == False,,,,,,-999,,,,,,,,, +util_WALKLOC__In_vehicle_time,WALK_LOC - In-vehicle time,@(odt_skims['WTW_TIV']) * df.time_factor,,,,,,coef_ivt,,,,,,,,, +util_WALK_LOC_iwait_time,WALK_LOC - wait time,@(odt_skims['WTW_FWT']) * df.time_factor,,,,,,coef_wait,,,,,,,,, +util_WALK_LOC_transfer_wait_time,WALK_LOC - transfer wait time,@(odt_skims['WTW_XWT'])* df.time_factor,,,,,,coef_xwait,,,,,,,,, +util_WALK_LOC_Walk_access_time,WALK_LOC - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,coef_acctime,,,,,,,,, +util_WALK_LOC_wait_access_time,WALK_LOC - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,coef_wait,,,,,,,,, +util_WALK_LOC_Walk_egress_time,WALK_LOC - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,coef_acctime,,,,,,,,, +util_WALK_LOC_wait_egress_time,WALK_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,coef_wait,,,,,,,,, +util_WALK_LOC_transfer_walk_time,WALK_LOC - transfer walk time,@(odt_skims['WTW_AUX'])* df.time_factor,,,,,,coef_xwalk,,,,,,,,, +util_WALK_LOC_transfers_penalty,WALK_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.outbound*df.mtnev_egr_xfer_out + ~df.outbound*df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor",,,,,,coef_xfer,,,,,,,,, +util_WTW_FARE,WALK_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,coef_income,,,,,,,,, +util_WALK_LOC_Female,WALK_LOC - Female,@(df.female),,,,,,coef_female_tran,,,,,,,,, +util_WALK_LOC_Origin_Mix,WALK_LOC - Origin Mix,oMGRAMix,,,,,,coef_oMix_wTran,,,,,,,,, +util_WALK_LOC_Origin_Intersection_Density,WALK_LOC - Origin Intersection Density,oMGRATotInt,,,,,,coef_oIntDen_wTran,,,,,,,,, +util_WALK_LOC_Destination_Employment_Density,WALK_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,coef_dEmpDen_wTran,,,,,,,,, +#,PNR_LOC,,,,,,,,,,,,,,,, +# FIXME need PNR utilties for new PNR treatment if not restricting stops on PNR tours,,,,,,,,,,,,,,,,, +util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,-999,-999,-999,-999,-999,,-999,-999,-999,-999,-999,-999,-999, +# util_PNR_LOC_Unavailable,PNR_LOC - Unavailable,(pnr_local_available == False)|(PNR_available==0),,,,,,,-999,,,,,,,, +# util_PNR_LOC_In_vehicle_time,PNR_LOC - In-vehicle time,@(odt_skims['PNROUT_LOC_TIV'])* df.time_factor * df.outbound,,,,,,,coef_ivt,,,,,,,, +# util_PNR_LOC_iwait_time,PNR_LOC - First iwait time,@(odt_skims['PNROUT_LOC_FWT'])* df.time_factor * df.outbound,,,,,,,coef_wait,,,,,,,, +# util_PNR_LOC_transfer_wait_time,PNR_LOC - transfer wait time,@(odt_skims['PNROUT_LOC_XWT'])* df.time_factor * df.outbound,,,,,,,coef_xwait,,,,,,,, +# util_PNR_LOC_number_of_transfers,PNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['PNROUT_LOC_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,coef_xferdrive,,,,,,,, +# util_PNR_LOC_PNR_time,PNR_LOC - PNR time,@odt_skims['PNROUT_LOC_ACC']* df.time_factor * df.outbound,,,,,,,coef_acctime,,,,,,,, +# util_PNR_LOC_PNR_cost,PNR_LOC - PNR cost,"@(df.auto_op_cost * (odt_skims['PNROUT_LOC_ACC']/60) *driveSpeed)* df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,coef_income,,,,,,,, +# util_PNRIN_LOC_PNR_cost,PNR_LOC - PNR cost,"@(df.auto_op_cost * (odt_skims['PNRIN_LOC_EGR']/60) *driveSpeed) * ~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,coef_income,,,,,,,, +# util_PNR_LOC_Walk_egress_time_(at_attraction_end),PNR_LOC - Walk egress time (at attraction end),"@np.where(df.nev_local_egress_available_out, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor * df.outbound",,,,,,,coef_acctime,,,,,,,, +# util_PNR_LOC_wait_egress_time_(at_attraction_end),PNR_LOC - Egress mt/nev wait time (at attraction end),"@np.where(df.nev_local_egress_available_out, nevWaitTime, np.where(df.microtransit_local_egress_available_out, microtransitWaitTime, 0)) * df.time_factor * df.outbound",,,,,,,coef_wait,,,,,,,, +# util_PNR_LOC_Walk_other_time,PNR_LOC - Walk other time,@odt_skims['PNROUT_LOC_AUX']* df.time_factor * df.outbound,,,,,,,coef_xwalk,,,,,,,, +# util_PNR_LOC_Fare_and_operating_cost,PNR_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['PNROUT_LOC_FARE'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * df.outbound",,,,,,,coef_income,,,,,,,, +# util_PNRIN_LOC_In_vehicle_time,PNRIN_LOC - In-vehicle time,@(odt_skims['PNRIN_LOC_TIV'])* df.time_factor * ~df.outbound,,,,,,,coef_ivt,,,,,,,, +# util_PNRIN_LOC_iwait_time,PNRIN_LOC - First iwait time,@(odt_skims['PNRIN_LOC_FWT']) * df.time_factor* ~df.outbound,,,,,,,coef_wait,,,,,,,, +# util_PNRIN_LOC_transfer_wait_time,PNRIN_LOC - transfer wait time,@(odt_skims['PNRIN_LOC_XWT'])* ~df.outbound,,,,,,,coef_xwait,,,,,,,, +# util_PNRIN_LOC_number_of_transfers,PNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['PNRIN_LOC_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,coef_xferdrive,,,,,,,, +# util_PNRIN_LOC_PNRIN_time,PNRIN_LOC - PNR time,@odt_skims['PNRIN_LOC_EGR'] * df.time_factor * ~df.outbound,,,,,,,coef_acctime,,,,,,,, +# util_PNRIN_LOC_Walk_access_time,PNRIN_LOC - Walk access time,"@np.where(df.nev_local_access_available_in, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in, df.microtransit_local_access_time_in, df.origin_local_time)) * df.time_factor * ~df.outbound",,,,,,,coef_acctime,,,,,,,, +# util_PNRIN_LOC_wait_access_time,PNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,coef_wait,,,,,,,, +# util_PNRIN_LOC_Walk_other_time,PNRIN_LOC - Walk other time,@odt_skims['PNRIN_LOC_AUX']* df.time_factor * ~df.outbound,,,,,,,coef_xwalk,,,,,,,, +# util_PNRIN_LOC_Fare_and_operating_cost,PNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['PNRIN_LOC_FARE'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,coef_income,,,,,,,, +# util_PNRIN_LOC_Destination_zone_densityIndex,PNRIN_LOC - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,coef_ivt,,,,,,,, +# util_PNR_LOC - Female,PNR_LOC - Female,@(df.female),,,,,,,coef_female_tran,,,,,,,, +# util_PNR_LOC - Destination Employment Density,PNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,coef_dEmpDen_dTran,,,,,,,, +#,,,,,,,,,,,,,,,,, +util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,(knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, +util_KNR_LOC_In_vehicle_time_out,KNR_LOC - In-vehicle time,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, +util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,coef_xferdrive,,,,,,, +util_KNR_LOC_KNR_time,KNR_LOC - KNR time,@(odt_skims['KTW_ACC']) * df.time_factor * df.outbound,,,,,,,,coef_acctime,,,,,,, +util_KNR_LOC_Walk_egress_time_(at_attraction_end),KNR_LOC - Walk egress time (at attraction end),"@np.where(df.nev_local_egress_available_out, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out, df.microtransit_local_egress_time_out, df.dest_local_time)) * df.time_factor * df.outbound",,,,,,,,coef_acctime,,,,,,, +util_KNR_LOC_wait_egress_time_(at_attraction_end),KNR_LOC - Egress mt/nev wait time (at attraction end),"@np.where(df.nev_local_egress_available_out, nevWaitTime, np.where(df.microtransit_local_egress_available_out, microtransitWaitTime, 0)) * df.time_factor * df.outbound",,,,,,,,coef_wait,,,,,,, +util_KNR_LOC_Walk_other_time,KNR_LOC - Walk other time,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,coef_xwalk,,,,,,, +util_KNR_LOC_Fare,KNR_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * df.outbound",,,,,,,,coef_income,,,,,,, +util_KNR_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['KTW_ACC']/60) *driveSpeed )*100*df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, +util_KNRIN_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['WTK_EGR']/60) *driveSpeed)*100*~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, +util_KNRIN_LOC_In_vehicle_time_in,KNRIN_LOC - In-vehicle time,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNRIN_LOC_iwait_time,KNRIN_LOC - First iwait time,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNRIN_LOC_transfer_wait_time,KNRIN_LOC - transfer wait time,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwait,,,,,,, +util_KNRIN_LOC_number_of_transfers,KNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,coef_xferdrive,,,,,,, +util_KNRIN_LOC_KNRIN_time,KNRIN_LOC - KNR time,@odt_skims['WTK_EGR'] * df.time_factor * ~df.outbound,,,,,,,,coef_acctime,,,,,,, +util_KNRIN_LOC_Walk_access_time,KNRIN_LOC - Walk access time,"@np.where(df.nev_local_access_available_in, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in, df.microtransit_local_access_time_in, df.origin_local_time)) * df.time_factor * ~df.outbound",,,,,,,,coef_acctime,,,,,,, +util_KNRIN_LOC_wait_access_time,KNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,,coef_wait,,,,,,, +util_KNRIN_LOC_Walk_other_time,KNRIN_LOC - Walk other time,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwalk,,,,,,, +util_KNRIN_LOC_Fare_and_operating_cost,KNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,,coef_income,,,,,,, +util_KNR_LOC_Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, +util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, +#,BiketoTransit,,,,,,,,,,,,,,,, +util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, +util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, +util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, +util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, +util_BIKE_TRANSIT_Origin_Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, +util_BIKE_TRANSIT_Origin_Intersection_Density,BIKE_TRANSIT - Origin Intersection Density,oMGRATotInt,,,,,,,,,coef_oIntDen_wTran,,,,,, +util_BIKE_TRANSIT_Destination_Employment_Density,BIKE_TRANSIT - Destination Employment Density,dMGRAEmpDen,,,,,,,,,coef_dEmpDen_wTran,,,,,, +#,Taxi,,,,,,,,,,,,,,,, +util_Taxi_Unavailable,Taxi - Unavailable,RideHail_available==0,,,,,,,,,,-999,,,,, +util_Taxi_In_vehicle_time,Taxi - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,coef_ivt,,,,, +util_Taxi_Wait_time,Taxi - Wait time,origTaxiWaitTime * time_factor,,,,,,,,,,coef_wait,,,,, +util_Taxi_Fare,Taxi - Fare,"@(((Taxi_baseFare + df.s2_dist_skims * Taxi_costPerMile + df.s2_time_skims * Taxi_costPerMinute) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,coef_income,,,,, +#,TNC Single,,,,,,,,,,,,,,,, +util_TNC_Single_Unavailable,TNC Single - Unavailable,RideHail_available==0,,,,,,,,,,,-999,,,, +util_TNC_Single_In_vehicle_time,TNC Single - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,,coef_ivt,,,, +util_TNC_Single_Wait_time,TNC Single - Wait time,origSingleTNCWaitTime * time_factor,,,,,,,,,,,coef_wait,,,, +util_TNC_Single_Cost,TNC Single - Cost,"@((np.maximum(TNC_single_baseFare + df.s2_dist_skims * TNC_single_costPerMile + df.s2_time_skims * TNC_single_costPerMinute, TNC_single_costMinimum) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,coef_income,,,, +#,TNC Shared,,,,,,,,,,,,,,,, +util_TNC_Shared_switch,TNC Shared - switch turn-off (depends on data availability),@(((~df.nev_available) & (~df.microtransit_available) & (scenarioYear==2022)) | (df.RideHail_available==0)),,,,,,,,,,,,-999,,, +util_TNC_Shared_In_vehicle_time,TNC Shared - In-vehicle time,"@(np.where(df.nev_available, df.nev_time, np.where(df.microtransit_available, df.microtransit_time, df.s3_time_skims * TNC_shared_IVTFactor))) * df.time_factor",,,,,,,,,,,,coef_ivt,,, +util_TNC_Shared_Wait_time,TNC Shared - Wait time,"@np.where(df.nev_available, nevWaitTime, np.where(df.microtransit_available, microtransitWaitTime, df.origSharedTNCWaitTime)) * df.time_factor",,,,,,,,,,,,coef_wait,,, +util_TNC_Shared_Cost,TNC Shared - Cost,"@np.where(df.nev_available, nevCost, np.where(df.microtransit_available, microtransitCost, (np.maximum(TNC_shared_baseFare + df.s3_dist_skims * TNC_shared_costPerMile + df.s3_time_skims * TNC_shared_costPerMinute, TNC_shared_costMinimum) + df.s3_cost_skims)))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,,coef_income,,, +util_calib_flexfleet,Calibration for flexible fleets,microtransit_available | nev_available,,,,,,,,,,,,coef_calib_flexfleet,,, +#,School bus,,,,,,,,,,,,,,,, +util_School_Bus_Unavailable,School Bus - Unavailable,SCHBUS_available==0,,,,,,,,,,,,,-999,, +util_School_Bus_In_vehicle_Time,School Bus - In-vehicle Time at 20 miles per hour,(da_dist_skims)* 3 * time_factor,,,,,,,,,,,,,coef_ivt,, +util_School_Bus_Wait_Time,School Bus - Wait Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_wait,, +util_School_Bus_Walk_Time,School Bus - Walk Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_acctime,, +util_School_Bus_Age_6_to_12,School Bus - Age 6 to 12,@(df.age > 5) * (df.age < 13),,,,,,,,,,,,,coef_age6to12_schb,, +#,Escooter,,,,,,,,,,,,,,,, +util_Escooter_Unavailable,Escooter - Unavailable,Escooter_available==0,,,,,,,,,,,,,,,-999 +#,Ebike,,,,,,,,,,,,,,,, +util_Ebike_Unavailable,Ebike - Unavailable,Ebike_available==0,,,,,,,,,,,,,,-999, +#,indiv tour ASCs,,,,,,,,,,,,,,,, +util_calib_numberofparticipan,abm 2+ calibration,(numberOfParticipantsInJointTour<=2)&(jointTour==1),,,coef_calib_numberofparticipants_SHARED3,,,,,,,,,,,, +util_calib_KNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*5*np.maximum((10-df.da_dist_skims),0)*0.5",,,,,,,,coef_calib_civt5max10sovdistski_KNR_TRANSIT,coef_calib_civt5max10sovdistski_TNC_TRANSIT,,,,,, +util_calib_Walk_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((200+(-133*df.da_dist_skims)),0)*0.5",,,,,,coef_calib_civtmax200133sovdist_WALK_TRANSIT,,,,,,,,, +util_calib_PNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((45+(-2.5*df.da_dist_skims)),0)*0.5",,,,,,,coef_calib_civtmax4525sovdistsk_PNR_TRANSIT,,,,,,,, +util_calib_esctour1,abm 2+ calibration,tour_type=='escort',,,,coef_calib_esctour1_WALK,,,,,,,,,,, +#,,,,,,,,,,,,,,,,, +util_calib_tourda,abm 2+ calibration,tourDA,,coef_calib_tourda_SHARED2,coef_calib_tourda_SHARED3,coef_calib_tourda_WALK,coef_calib_tourda_BIKE,coef_calib_tourda_WALK_TRANSIT,coef_calib_tourda_PNR_TRANSIT,coef_calib_tourda_KNR_TRANSIT,coef_calib_tourda_TNC_TRANSIT,coef_calib_tourda_TAXI,coef_calib_tourda_TNC_SINGLE,coef_calib_tourda_TNC_SHARED,coef_calib_tourda_SCH_BUS,-999,-999 +util_calib_tours2,abm 2+ calibration,tourS2,coef_calib_tours2_DRIVEALONE,coef_calib_tours2_SHARED2,coef_calib_tours2_SHARED3,coef_calib_tours2_WALK,coef_calib_tours2_BIKE,coef_calib_tours2_WALK_TRANSIT,coef_calib_tours2_PNR_TRANSIT,coef_calib_tours2_KNR_TRANSIT,coef_calib_tours2_TNC_TRANSIT,coef_calib_tours2_TAXI,coef_calib_tours2_TNC_SINGLE,coef_calib_tours2_TNC_SHARED,coef_calib_tours2_SCH_BUS,0,0 +util_calib_tours3,abm 2+ calibration,tourS3,coef_calib_tours3_DRIVEALONE,coef_calib_tours3_SHARED2,coef_calib_tours3_SHARED3,coef_calib_tours3_WALK,coef_calib_tours3_BIKE,coef_calib_tours3_WALK_TRANSIT,coef_calib_tours3_PNR_TRANSIT,coef_calib_tours3_KNR_TRANSIT,coef_calib_tours3_TNC_TRANSIT,coef_calib_tours3_TAXI,coef_calib_tours3_TNC_SINGLE,coef_calib_tours3_TNC_SHARED,coef_calib_tours3_SCH_BUS,0,0 +util_calib_tourwalk,abm 2+ calibration,tourWalk,coef_calib_tourwalk_DRIVEALONE,coef_calib_tourwalk_SHARED2,coef_calib_tourwalk_SHARED3,0,coef_calib_tourwalk_BIKE,coef_calib_tourwalk_WALK_TRANSIT,coef_calib_tourwalk_PNR_TRANSIT,coef_calib_tourwalk_KNR_TRANSIT,coef_calib_tourwalk_TNC_TRANSIT,coef_calib_tourwalk_TAXI,coef_calib_tourwalk_TNC_SINGLE,coef_calib_tourwalk_TNC_SHARED,coef_calib_tourwalk_SCH_BUS,-999,-999 +util_calib_tourbike,abm 2+ calibration,tourBike,coef_calib_tourbike_DRIVEALONE,coef_calib_tourbike_SHARED2,coef_calib_tourbike_SHARED3,coef_calib_tourbike_WALK,coef_calib_tourbike_BIKE,coef_calib_tourbike_WALK_TRANSIT,coef_calib_tourbike_PNR_TRANSIT,coef_calib_tourbike_KNR_TRANSIT,coef_calib_tourbike_TNC_TRANSIT,coef_calib_tourbike_TAXI,coef_calib_tourbike_TNC_SINGLE,coef_calib_tourbike_TNC_SHARED,coef_calib_tourbike_SCH_BUS,-999,-999 +util_calib_tourwtran,abm 2+ calibration,tourWTran,coef_calib_tourwtran_DRIVEALONE,coef_calib_tourwtran_SHARED2,coef_calib_tourwtran_SHARED3,coef_calib_tourwtran_WALK,coef_calib_tourwtran_BIKE,coef_calib_tourwtran_WALK_TRANSIT,coef_calib_tourwtran_PNR_TRANSIT,coef_calib_tourwtran_KNR_TRANSIT,coef_calib_tourwtran_TNC_TRANSIT,coef_calib_tourwtran_TAXI,coef_calib_tourwtran_TNC_SINGLE,coef_calib_tourwtran_TNC_SHARED,coef_calib_tourwtran_SCH_BUS,0,0 +util_calib_tourpnr,abm 2+ calibration,tourPNR,coef_calib_tourpnr_DRIVEALONE,coef_calib_tourpnr_SHARED2,coef_calib_tourpnr_SHARED3,coef_calib_tourpnr_WALK,coef_calib_tourpnr_BIKE,coef_calib_tourpnr_WALK_TRANSIT,coef_calib_tourpnr_PNR_TRANSIT,coef_calib_tourpnr_KNR_TRANSIT,coef_calib_tourpnr_TNC_TRANSIT,coef_calib_tourpnr_TAXI,coef_calib_tourpnr_TNC_SINGLE,coef_calib_tourpnr_TNC_SHARED,coef_calib_tourpnr_SCH_BUS,-999,-999 +util_calib_tourknr,abm 2+ calibration,tourKNR,coef_calib_tourknr_DRIVEALONE,coef_calib_tourknr_SHARED2,coef_calib_tourknr_SHARED3,coef_calib_tourknr_WALK,coef_calib_tourknr_BIKE,coef_calib_tourknr_WALK_TRANSIT,coef_calib_tourknr_PNR_TRANSIT,coef_calib_tourknr_KNR_TRANSIT,coef_calib_tourknr_TNC_TRANSIT,coef_calib_tourknr_TAXI,coef_calib_tourknr_TNC_SINGLE,coef_calib_tourknr_TNC_SHARED,coef_calib_tourknr_SCH_BUS,-999,-999 +util_calib_tourtnr,abm 2+ calibration,tourBNR,coef_calib_tourtnr_DRIVEALONE,0,0,0,coef_calib_tourtnr_BIKE,0,coef_calib_tourtnr_PNR_TRANSIT,0,0,0,0,0,coef_calib_tourtnr_SCH_BUS,-999,-999 +util_calib_tourmaas,abm 2+ calibration,tourMaaS,coef_calib_tourmaas_DRIVEALONE,coef_calib_tourmaas_SHARED2,coef_calib_tourmaas_SHARED3,coef_calib_tourmaas_WALK,coef_calib_tourmaas_BIKE,coef_calib_tourmaas_WALK_TRANSIT,coef_calib_tourmaas_PNR_TRANSIT,coef_calib_tourmaas_KNR_TRANSIT,coef_calib_tourmaas_TNC_TRANSIT,coef_calib_tourmaas_TAXI,coef_calib_tourmaas_TNC_SINGLE,coef_calib_tourmaas_TNC_SHARED,coef_calib_tourmaas_TNC_SCH_BUS,0,0 +util_calib_tourschbus,abm 2+ calibration,tourSchBus,coef_calib_tourschbus_DRIVEALONE,coef_calib_tourschbus_SHARED2,coef_calib_tourschbus_SHARED3,coef_calib_tourschbus_WALK,coef_calib_tourschbus_BIKE,coef_calib_tourschbus_WALK_TRANSIT,coef_calib_tourschbus_PNR_TRANSIT,coef_calib_tourschbus_KNR_TRANSIT,coef_calib_tourschbus_TNC_TRANSIT,coef_calib_tourschbus_TAXI,coef_calib_tourschbus_TNC_SINGLE,coef_calib_tourschbus_TNC_SHARED,0,-999,-999 +util_availability_tourebike,,tourEbike,-999,-999,-999,0,-999,-999,-999,-999,-999,-999,-999,-999,-999,0,-999 +util_availability_tourescooter,,tourEscooter,-999,-999,-999,0,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,0 +#,,,,,,,,,,,,,,,,, +util_calib_jointtour1,abm 2+ calibration,jointTour==1,0,0,0,coef_calib_jointtour1_WALK,0,coef_calib_jointtour1_WALK_TRANSIT,coef_calib_jointtour1_PNR_TRANSIT,coef_calib_jointtour1_KNR_TRANSIT,coef_calib_jointtour1_TNC_TRANSIT,0,0,0,0,, +util_calib_tourbikejointtour0,abm 2+ calibration,tourBike*(jointTour==0),coef_calib_tourbikejointtour0_DRIVEALONE,coef_calib_tourbikejointtour0_SHARED2,coef_calib_tourbikejointtour0_SHARED3,coef_calib_tourbikejointtour0_WALK,coef_calib_tourbikejointtour0_BIKE,coef_calib_tourbikejointtour0_WALK_TRANSIT,coef_calib_tourbikejointtour0_PNR_TRANSIT,coef_calib_tourbikejointtour0_KNR_TRANSIT,coef_calib_tourbikejointtour0_TNC_TRANSIT,coef_calib_tourbikejointtour0_TAXI,coef_calib_tourbikejointtour0_TNC_SINGLE,coef_calib_tourbikejointtour0_TNC_SHARED,0,, +util_calib_tourbikejointtour1,abm 2+ calibration,tourBike*(jointTour==1),0,0,0,0,coef_calib_tourbikejointtour1_BIKE,0,0,0,0,coef_calib_tourbikejointtour1_TAXI,coef_calib_tourbikejointtour1_TNC_SINGLE,coef_calib_tourbikejointtour1_TNC_SHARED,0,, +util_calib_tourdajointtour0,abm 2+ calibration,tourDA*(jointTour==0),coef_calib_tourdajointtour0_DRIVEALONE,coef_calib_tourdajointtour0_SHARED2,coef_calib_tourdajointtour0_SHARED3,coef_calib_tourdajointtour0_WALK,coef_calib_tourdajointtour0_BIKE,coef_calib_tourdajointtour0_WALK_TRANSIT,coef_calib_tourdajointtour0_PNR_TRANSIT,coef_calib_tourdajointtour0_KNR_TRANSIT,coef_calib_tourdajointtour0_TNC_TRANSIT,coef_calib_tourdajointtour0_TAXI,coef_calib_tourdajointtour0_TNC_SINGLE,coef_calib_tourdajointtour0_TNC_SHARED,0,, +util_calib_tourdajointtour1,abm 2+ calibration,tourDA*(jointTour==1),0,coef_calib_tourdajointtour1_SHARED2,coef_calib_tourdajointtour1_SHARED3,coef_calib_tourdajointtour1_WALK,coef_calib_tourdajointtour1_BIKE,coef_calib_tourdajointtour1_WALK_TRANSIT,coef_calib_tourdajointtour1_PNR_TRANSIT,coef_calib_tourdajointtour1_KNR_TRANSIT,coef_calib_tourdajointtour1_TNC_TRANSIT,coef_calib_tourdajointtour1_TAXI,coef_calib_tourdajointtour1_TNC_SINGLE,coef_calib_tourdajointtour1_TNC_SHARED,0,, +util_calib_tourknrjointtour0,abm 2+ calibration,tourKNR*(jointTour==0),coef_calib_tourknrjointtour0_DRIVEALONE,coef_calib_tourknrjointtour0_SHARED2,coef_calib_tourknrjointtour0_SHARED3,coef_calib_tourknrjointtour0_WALK,coef_calib_tourknrjointtour0_BIKE,coef_calib_tourknrjointtour0_WALK_TRANSIT,coef_calib_tourknrjointtour0_PNR_TRANSIT,coef_calib_tourknrjointtour0_KNR_TRANSIT,coef_calib_tourknrjointtour0_TNC_TRANSIT,coef_calib_tourknrjointtour0_TAXI,coef_calib_tourknrjointtour0_TNC_SINGLE,coef_calib_tourknrjointtour0_TNC_SHARED,0,, +util_calib_tourknrjointtour1,abm 2+ calibration,tourKNR*(jointTour==1),coef_calib_tourknrjointtour1_DRIVEALONE,0,0,0,coef_calib_tourknrjointtour1_BIKE,0,coef_calib_tourknrjointtour1_PNR_TRANSIT,0,coef_calib_tourknrjointtour1_TNC_TRANSIT,coef_calib_tourknrjointtour1_TAXI,coef_calib_tourknrjointtour1_TNC_SINGLE,coef_calib_tourknrjointtour1_TNC_SHARED,0,, +util_calib_tourknrtotstops0,abm 2+ calibration,tourKNR*(totStops==0),coef_calib_tourknrtotstops0_DRIVEALONE,coef_calib_tourknrtotstops0_SHARED2,coef_calib_tourknrtotstops0_SHARED3,coef_calib_tourknrtotstops0_WALK,coef_calib_tourknrtotstops0_BIKE,coef_calib_tourknrtotstops0_WALK_TRANSIT,coef_calib_tourknrtotstops0_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourknrtotstops>0,abm 2+ calibration,tourKNR*(totStops>0),coef_calib_tourknrtotstopsm0_DRIVEALONE,0,0,0,coef_calib_tourknrtotstopsm0_BIKE,0,coef_calib_tourknrtotstopsm0_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourknrfirstofmult,abm 2+ calibration,tourKNR*firstOfMultipleTrips,coef_calib_tourknrfirstofmultip_DRIVEALONE,0,0,0,coef_calib_tourknrfirstofmultip_BIKE,0,coef_calib_tourknrfirstofmultip_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourknrlastofmulti,abm 2+ calibration,tourKNR*lastofMultipleTrips,coef_calib_tourknrlastofmultipl_DRIVEALONE,0,0,0,coef_calib_tourknrlastofmultipl_BIKE,0,coef_calib_tourknrlastofmultipl_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourebikejointtour0,,tourEbike*(jointTour==0),,,,coef_calib_tourebikejointtour0_WALK,,,,,,,,,,coef_calib_tourebikejointtour0_EBIKE, +util_calib_tourebikejointtour1,,tourEbike*(jointTour==1),,,,coef_calib_tourebikejointtour1_WALK,,,,,,,,,,coef_calib_tourebikejointtour1_EBIKE, +util_calib_tourescooterjointtour0,,tourEscooter*(jointTour==0),,,,coef_calib_tourescooterjointtour0_WALK,,,,,,,,,,,coef_calib_tourescooterjointtour0_ESCOOTER +util_calib_tourescooterjointtour1,,tourEscooter*(jointTour==1),,,,coef_calib_tourescooterjointtour1_WALK,,,,,,,,,,,coef_calib_tourescooterjointtour1_ESCOOTER +#,,,,,,,,,,,,,,,,, +util_calib_tourmaasjointtour0,abm 2+ calibration,tourMaaS*(jointTour==0),0,coef_calib_tourmaasjointtour0_SHARED2,coef_calib_tourmaasjointtour0_SHARED3,coef_calib_tourmaasjointtour0_WALK,0,0,0,0,0,coef_calib_tourmaasjointtour0_TAXI,coef_calib_tourmaasjointtour0_TNC_SINGLE,coef_calib_tourmaasjointtour0_TNC_SHARED,0,, +util_calib_tourmaasjointtour1,abm 2+ calibration,tourMaaS*(jointTour==1),0,coef_calib_tourmaasjointtour1_SHARED2,coef_calib_tourmaasjointtour1_SHARED3,coef_calib_tourmaasjointtour1_WALK,0,0,0,0,0,0,coef_calib_tourmaasjointtour1_TNC_SINGLE,coef_calib_tourmaasjointtour1_TNC_SHARED,0,, +util_calib_tourpnrjointtour0,abm 2+ calibration,tourPNR*(jointTour==0),coef_calib_tourpnrjointtour0_DRIVEALONE,coef_calib_tourpnrjointtour0_SHARED2,coef_calib_tourpnrjointtour0_SHARED3,coef_calib_tourpnrjointtour0_WALK,coef_calib_tourpnrjointtour0_BIKE,coef_calib_tourpnrjointtour0_WALK_TRANSIT,coef_calib_tourpnrjointtour0_PNR_TRANSIT,coef_calib_tourpnrjointtour0_KNR_TRANSIT,coef_calib_tourpnrjointtour0_TNC_TRANSIT,coef_calib_tourpnrjointtour0_TAXI,coef_calib_tourpnrjointtour0_TNC_SINGLE,coef_calib_tourpnrjointtour0_TNC_SHARED,0,, +util_calib_tourpnrjointtour1,abm 2+ calibration,tourPNR*(jointTour==1),0,0,0,0,coef_calib_tourpnrjointtour1_BIKE,0,0,coef_calib_tourpnrjointtour1_KNR_TRANSIT,coef_calib_tourpnrjointtour1_TNC_TRANSIT,coef_calib_tourpnrjointtour1_TAXI,coef_calib_tourpnrjointtour1_TNC_SINGLE,coef_calib_tourpnrjointtour1_TNC_SHARED,0,, +util_calib_tourpnrtotstops0,abm 2+ calibration,tourPNR*(totStops==0),coef_calib_tourpnrtotstops0_DRIVEALONE,coef_calib_tourpnrtotstops0_SHARED2,coef_calib_tourpnrtotstops0_SHARED3,coef_calib_tourpnrtotstops0_WALK,coef_calib_tourpnrtotstops0_BIKE,coef_calib_tourpnrtotstops0_WALK_TRANSIT,0,coef_calib_tourpnrtotstops0_KNR_TRANSIT,coef_calib_tourpnrtotstops0_TNC_TRANSIT,0,0,0,0,, +util_calib_tourpnrtotstops>0,abm 2+ calibration,tourPNR*(totStops>0),0,0,0,0,coef_calib_tourpnrtotstopsm0_BIKE,coef_calib_tourpnrtotstopsm0_WALK_TRANSIT,0,coef_calib_tourpnrtotstopsm0_KNR_TRANSIT,coef_calib_tourpnrtotstopsm0_TNC_TRANSIT,0,0,0,0,, +util_calib_tourpnrfirstofmult,abm 2+ calibration,tourPNR*firstOfMultipleTrips,0,0,0,0,coef_calib_tourpnrfirstofmultip_BIKE,0,0,coef_calib_tourpnrfirstofmultip_KNR_TRANSIT,coef_calib_tourpnrfirstofmultip_TNC_TRANSIT,0,0,0,0,, +util_calib_tourpnrlastofmulti,abm 2+ calibration,tourPNR*lastofMultipleTrips,0,0,0,0,coef_calib_tourpnrlastofmultipl_BIKE,0,0,coef_calib_tourpnrlastofmultipl_KNR_TRANSIT,coef_calib_tourpnrlastofmultipl_TNC_TRANSIT,0,0,0,0,, +util_calib_tours2jointtour0,abm 2+ calibration,tourS2*(jointTour==0),coef_calib_tours2jointtour0_DRIVEALONE,coef_calib_tours2jointtour0_SHARED2,coef_calib_tours2jointtour0_SHARED3,coef_calib_tours2jointtour0_WALK,coef_calib_tours2jointtour0_BIKE,coef_calib_tours2jointtour0_WALK_TRANSIT,coef_calib_tours2jointtour0_PNR_TRANSIT,coef_calib_tours2jointtour0_KNR_TRANSIT,coef_calib_tours2jointtour0_TNC_TRANSIT,coef_calib_tours2jointtour0_TAXI,coef_calib_tours2jointtour0_TNC_SINGLE,coef_calib_tours2jointtour0_TNC_SHARED,0,, +util_calib_tours2jointtour1,abm 2+ calibration,tourS2*(jointTour==1),coef_calib_tours2jointtour1_DRIVEALONE,coef_calib_tours2jointtour1_SHARED2,coef_calib_tours2jointtour1_SHARED3,coef_calib_tours2jointtour1_WALK,coef_calib_tours2jointtour1_BIKE,coef_calib_tours2jointtour1_WALK_TRANSIT,coef_calib_tours2jointtour1_PNR_TRANSIT,coef_calib_tours2jointtour1_KNR_TRANSIT,coef_calib_tours2jointtour1_TNC_TRANSIT,coef_calib_tours2jointtour1_TAXI,coef_calib_tours2jointtour1_TNC_SINGLE,coef_calib_tours2jointtour1_TNC_SHARED,0,, +#,,,,,,,,,,,,,,,,, +util_calib_tours2totstops0,abm 2+ calibration,tourS2*(totStops==0),coef_calib_tours2totstops0_DRIVEALONE,0,coef_calib_tours2totstops0_SHARED3,coef_calib_tours2totstops0_WALK,coef_calib_tours2totstops0_BIKE,coef_calib_tours2totstops0_WALK_TRANSIT,coef_calib_tours2totstops0_PNR_TRANSIT,coef_calib_tours2totstops0_KNR_TRANSIT,coef_calib_tours2totstops0_TNC_TRANSIT,0,0,0,0,, +util_calib_tours2firstofmulti,abm 2+ calibration,tourS2*firstOfMultipleTrips,coef_calib_tours2firstofmultipl_DRIVEALONE,0,coef_calib_tours2firstofmultipl_SHARED3,coef_calib_tours2firstofmultipl_WALK,coef_calib_tours2firstofmultipl_BIKE,coef_calib_tours2firstofmultipl_WALK_TRANSIT,coef_calib_tours2firstofmultipl_PNR_TRANSIT,coef_calib_tours2firstofmultipl_KNR_TRANSIT,coef_calib_tours2firstofmultipl_TNC_TRANSIT,0,0,0,0,, +util_calib_tours2lastofmultip,abm 2+ calibration,tourS2*lastofMultipleTrips,coef_calib_tours2lastofmultiple_DRIVEALONE,0,coef_calib_tours2lastofmultiple_SHARED3,coef_calib_tours2lastofmultiple_WALK,coef_calib_tours2lastofmultiple_BIKE,coef_calib_tours2lastofmultiple_WALK_TRANSIT,coef_calib_tours2lastofmultiple_PNR_TRANSIT,coef_calib_tours2lastofmultiple_KNR_TRANSIT,coef_calib_tours2lastofmultiple_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3jointtour0,abm 2+ calibration,tourS3*(jointTour==0),coef_calib_tours3jointtour0_DRIVEALONE,coef_calib_tours3jointtour0_SHARED2,coef_calib_tours3jointtour0_SHARED3,coef_calib_tours3jointtour0_WALK,coef_calib_tours3jointtour0_BIKE,coef_calib_tours3jointtour0_WALK_TRANSIT,coef_calib_tours3jointtour0_PNR_TRANSIT,coef_calib_tours3jointtour0_KNR_TRANSIT,coef_calib_tours3jointtour0_TNC_TRANSIT,coef_calib_tours3jointtour0_TAXI,coef_calib_tours3jointtour0_TNC_SINGLE,coef_calib_tours3jointtour0_TNC_SHARED,0,, +util_calib_tours3jointtour1,abm 2+ calibration,tourS3*(jointTour==1),coef_calib_tours3jointtour1_DRIVEALONE,coef_calib_tours3jointtour1_SHARED2,coef_calib_tours3jointtour1_SHARED3,coef_calib_tours3jointtour1_WALK,coef_calib_tours3jointtour1_BIKE,coef_calib_tours3jointtour1_WALK_TRANSIT,coef_calib_tours3jointtour1_PNR_TRANSIT,coef_calib_tours3jointtour1_KNR_TRANSIT,coef_calib_tours3jointtour1_TNC_TRANSIT,coef_calib_tours3jointtour1_TAXI,coef_calib_tours3jointtour1_TNC_SINGLE,coef_calib_tours3jointtour1_TNC_SHARED,0,, +util_calib_tours3totstops0,abm 2+ calibration,tourS3*(totStops==0),coef_calib_tours3totstops0_DRIVEALONE,coef_calib_tours3totstops0_SHARED2,0,coef_calib_tours3totstops0_WALK,coef_calib_tours3totstops0_BIKE,coef_calib_tours3totstops0_WALK_TRANSIT,coef_calib_tours3totstops0_PNR_TRANSIT,coef_calib_tours3totstops0_KNR_TRANSIT,coef_calib_tours3totstops0_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3autodeficien,abm 2+ calibration,tourS3*autoDeficientHH,0,coef_calib_tours3autodeficienth_SHARED2,0,0,0,0,0,0,0,0,0,0,0,, +util_calib_tours3firstofmulti,abm 2+ calibration,tourS3*firstOfMultipleTrips,coef_calib_tours3firstofmultipl_DRIVEALONE,coef_calib_tours3firstofmultipl_SHARED2,0,coef_calib_tours3firstofmultipl_WALK,coef_calib_tours3firstofmultipl_BIKE,coef_calib_tours3firstofmultipl_WALK_TRANSIT,coef_calib_tours3firstofmultipl_PNR_TRANSIT,coef_calib_tours3firstofmultipl_KNR_TRANSIT,coef_calib_tours3firstofmultipl_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3lastofmultip,abm 2+ calibration,tourS3*lastofMultipleTrips,coef_calib_tours3lastofmultiple_DRIVEALONE,coef_calib_tours3lastofmultiple_SHARED2,0,coef_calib_tours3lastofmultiple_WALK,coef_calib_tours3lastofmultiple_BIKE,coef_calib_tours3lastofmultiple_WALK_TRANSIT,coef_calib_tours3lastofmultiple_PNR_TRANSIT,coef_calib_tours3lastofmultiple_KNR_TRANSIT,coef_calib_tours3lastofmultiple_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3zeroautohh,abm 2+ calibration,tourS3*zeroAutoHH,0,coef_calib_tours3zeroautohh_SHARED2,0,0,0,0,0,0,0,0,0,0,0,, +#,,,,,,,,,,,,,,,,, +util_calib_tourwtranjointtour0,abm 2+ calibration,tourWTran*(jointTour==0),coef_calib_tourwtranjointtour0_DRIVEALONE,coef_calib_tourwtranjointtour0_SHARED2,coef_calib_tourwtranjointtour0_SHARED3,coef_calib_tourwtranjointtour0_WALK,coef_calib_tourwtranjointtour0_BIKE,coef_calib_tourwtranjointtour0_WALK_TRANSIT,coef_calib_tourwtranjointtour0_PNR_TRANSIT,coef_calib_tourwtranjointtour0_KNR_TRANSIT,coef_calib_tourwtranjointtour0_TNC_TRANSIT,0,coef_calib_tourwtranjointtour0_TNC_SINGLE,coef_calib_tourwtranjointtour0_TNC_SHARED,0,, +util_calib_tourwtranjointtour1,abm 2+ calibration,tourWTran*(jointTour==1),coef_calib_tourwtranjointtour1_DRIVEALONE,coef_calib_tourwtranjointtour1_SHARED2,coef_calib_tourwtranjointtour1_SHARED3,coef_calib_tourwtranjointtour1_WALK,coef_calib_tourwtranjointtour1_BIKE,coef_calib_tourwtranjointtour1_WALK_TRANSIT,coef_calib_tourwtranjointtour1_PNR_TRANSIT,coef_calib_tourwtranjointtour1_KNR_TRANSIT,coef_calib_tourwtranjointtour1_TNC_TRANSIT,coef_calib_tourwtranjointtour1_TAXI,coef_calib_tourwtranjointtour1_TNC_SINGLE,coef_calib_tourwtranjointtour1_TNC_SHARED,0,, +util_calib_tourwtrantotstops0,abm 2+ calibration,tourWTran*(totStops==0),coef_calib_tourwtrantotstops0_DRIVEALONE,coef_calib_tourwtrantotstops0_SHARED2,coef_calib_tourwtrantotstops0_SHARED3,coef_calib_tourwtrantotstops0_WALK,coef_calib_tourwtrantotstops0_BIKE,0,coef_calib_tourwtrantotstops0_PNR_TRANSIT,coef_calib_tourwtrantotstops0_KNR_TRANSIT,coef_calib_tourwtrantotstops0_TNC_TRANSIT,0,0,0,coef_calib_tourwtrantotstops0_SCH_BUS,, +#,,,,,,,,,,,,,,,,, +util_calib_tourwtranfirstofmu,abm 2+ calibration,tourWTran*firstOfMultipleTrips,coef_calib_tourwtranfirstofmult_DRIVEALONE,coef_calib_tourwtranfirstofmult_SHARED2,coef_calib_tourwtranfirstofmult_SHARED3,coef_calib_tourwtranfirstofmult_WALK,coef_calib_tourwtranfirstofmult_BIKE,0,coef_calib_tourwtranfirstofmult_PNR_TRANSIT,coef_calib_tourwtranfirstofmult_KNR_TRANSIT,coef_calib_tourwtranfirstofmult_TNC_TRANSIT,0,0,0,coef_calib_tourwtranfirstofmult_SCH_BUS,, +util_calib_tourwtranlastofmul,abm 2+ calibration,tourWTran*lastofMultipleTrips,coef_calib_tourwtranlastofmulti_DRIVEALONE,coef_calib_tourwtranlastofmulti_SHARED2,coef_calib_tourwtranlastofmulti_SHARED3,coef_calib_tourwtranlastofmulti_WALK,coef_calib_tourwtranlastofmulti_BIKE,0,coef_calib_tourwtranlastofmulti_PNR_TRANSIT,coef_calib_tourwtranlastofmulti_KNR_TRANSIT,coef_calib_tourwtranlastofmulti_TNC_TRANSIT,0,0,0,coef_calib_tourwtranlastofmulti_SCH_BUS,, +util_calib_tourwtranzeroautoh,abm 2+ calibration,tourWTran*zeroAutoHH,0,0,0,coef_calib_tourwtranzeroautohh_WALK,0,0,0,0,0,0,0,0,0,, +util_calib_tourwalkjointtour0,abm 2+ calibration,tourWalk*(jointTour==0),coef_calib_tourwalkjointtour0_DRIVEALONE,coef_calib_tourwalkjointtour0_SHARED2,coef_calib_tourwalkjointtour0_SHARED3,coef_calib_tourwalkjointtour0_WALK,coef_calib_tourwalkjointtour0_BIKE,coef_calib_tourwalkjointtour0_WALK_TRANSIT,coef_calib_tourwalkjointtour0_PNR_TRANSIT,coef_calib_tourwalkjointtour0_KNR_TRANSIT,coef_calib_tourwalkjointtour0_TNC_TRANSIT,coef_calib_tourwalkjointtour0_TAXI,coef_calib_tourwalkjointtour0_TNC_SINGLE,coef_calib_tourwalkjointtour0_TNC_SHARED,0,, +util_calib_tourwalkjointtour1,abm 2+ calibration,tourWalk*(jointTour==1),coef_calib_tourwalkjointtour1_DRIVEALONE,coef_calib_tourwalkjointtour1_SHARED2,coef_calib_tourwalkjointtour1_SHARED3,0,coef_calib_tourwalkjointtour1_BIKE,coef_calib_tourwalkjointtour1_WALK_TRANSIT,coef_calib_tourwalkjointtour1_PNR_TRANSIT,coef_calib_tourwalkjointtour1_KNR_TRANSIT,coef_calib_tourwalkjointtour1_TNC_TRANSIT,coef_calib_tourwalkjointtour1_TAXI,coef_calib_tourwalkjointtour1_TNC_SINGLE,coef_calib_tourwalkjointtour1_TNC_SHARED,0,, +#,Micromobility,,,,,,,,,,,,,,,, +util_micromobility_long_access,Shut off micromobility if access time > threshold and not micromobility tour,@((df.MicroAccessTime > microAccessThreshold)& ~(df.tourEbike | df.tourEscooter)),,,,,,,,,,,,,,-999,-999 +util_ebike_long_access_microTour,Decrease ebike if access time > threshold but tour is micromobility,@((df.MicroAccessTime > microAccessThreshold) & (df.tourEbike | df.tourEscooter) & ((~df.ebike_owner) | (~df.tourEbike))),,,,,,,,,,,,,,-20, +util_escooter_long_access_microTour,Decrease escooter if access time > threshold but tour is micromobility,@((df.MicroAccessTime > microAccessThreshold) & (df.tourEbike | df.tourEscooter)),,,,,,,,,,,,,,,-20 +#util_micromobility_long_trip,Shut off ebike if distance > threshold,ebikeMaxDistance,,,,,,,,,,,,,,-999, +#util_micromobility_long_trip,Shut off escooter if distance > threshold,escooterMaxDistance,,,,,,,,,,,,,,,-999 +util_ebike_ivt,Ebike utility for in-vehicle time,@(df.ebike_time * df.time_factor),,,,,,,,,,,,,,coef_ivt, +util_ebike_access,Ebike utility for access time time,@((((~df.ebike_owner) | (~df.tourEbike))&(microRentTime + df.MicroAccessTime)))*df.time_factor,,,,,,,,,,,,,,coef_acctime, +util_ebike_cost_inb,Ebike utility for inbound cost,@(((~df.ebike_owner) | (~df.tourEbike)) & ((microFixedCost + microVarCost*df.ebike_time)*100/df.cost_sensitivity)),,,,,,,,,,,,,,coef_income, +util_escooter_ivt,Escooter utility for in-vehicle time,@(df.escooter_time)*df.time_factor,,,,,,,,,,,,,,,coef_ivt +util_escooter_access,Escooter utility for access time,@(microRentTime + df.MicroAccessTime) *df.time_factor,,,,,,,,,,,,,,,coef_acctime +util_escooter_cost_inb,Escooter utility for inbound cost,@(microFixedCost + microVarCost*df.escooter_time)*100/df.cost_sensitivity,,,,,,,,,,,,,,,coef_income From 2371298f84cb22976215482c49b6c6a016847cab Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 28 Apr 2026 09:43:16 -0500 Subject: [PATCH 28/46] Fix mismatched parens in annotate persons --- resident/configs/annotate_persons.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resident/configs/annotate_persons.csv b/resident/configs/annotate_persons.csv index 38af445..b695671 100644 --- a/resident/configs/annotate_persons.csv +++ b/resident/configs/annotate_persons.csv @@ -24,7 +24,7 @@ person type,ptype,"pd.Series(PTYPE_NONWORK, index=persons.index)" ,ptype,"np.where(persons.age >= 65, PTYPE_RETIRED, ptype)" ,ptype,"np.where(pemploy == 2, PTYPE_PART, ptype)" ,ptype,"np.where(pemploy == 1, PTYPE_FULL, ptype)" -,ptype,"np.where((persons.age >= 5) & ((persons.age < 18) | ((persons.age == 18) & (pstudent == 1)))), PTYPE_SCHOOL, ptype)" +,ptype,"np.where((persons.age >= 5) & ((persons.age < 18) | ((persons.age == 18) & (pstudent == 1))), PTYPE_SCHOOL, ptype)" ,ptype,"np.where(persons.age < 5, PTYPE_PRESCHOOL, ptype)" ,ptype,"np.where(pstudent == 2, PTYPE_UNIVERSITY, ptype)" # FIXME are these rules for preschoolers still wanted?,, From 978f78190dde1f119bc94e59b030b80fa8c64956 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 28 Apr 2026 13:12:26 -0500 Subject: [PATCH 29/46] Ensure consistent number of fields --- .../annotate_disaggregate_accessibility.csv | 2 +- resident/configs/auto_ownership.csv | 2 +- .../configs/auto_ownership_preprocessor.csv | 2 +- .../external_non_mandatory_identification.csv | 2 +- resident/configs/license_holding_status.csv | 2 +- ..._scheduling_annotate_alts_preprocessor.csv | 2 +- .../school_escorting_coefficients_inbound.csv | 8 +-- ...school_escorting_preprocessor_outbound.csv | 4 +- ...l_escorting_preprocessor_outbound_cond.csv | 4 +- resident/configs/school_location.csv | 4 +- ..._frequency_annotate_tours_preprocessor.csv | 2 +- ..._choice_annotate_choosers_preprocessor.csv | 54 +++++++++---------- resident/configs/trip_destination_sample.csv | 2 +- ...ode_choice_annotate_trips_preprocessor.csv | 2 +- .../configs/trip_scheduling_preprocessor.csv | 2 +- resident/configs/vehicle_allocation.csv | 10 ++-- 16 files changed, 52 insertions(+), 52 deletions(-) diff --git a/resident/configs/annotate_disaggregate_accessibility.csv b/resident/configs/annotate_disaggregate_accessibility.csv index 821dda4..312f1d2 100644 --- a/resident/configs/annotate_disaggregate_accessibility.csv +++ b/resident/configs/annotate_disaggregate_accessibility.csv @@ -1,4 +1,4 @@ -# annotating the proto_disaggregate_accessibilty table +# annotating the proto_disaggregate_accessibilty table,, Description,Target,Expression workplace location for zero auto only,workplace_location_accessibility_0,"np.where(df.auto_ownership == 0, df.workplace_location_accessibility, np.nan)" workplace location for auto deficient,workplace_location_accessibility_1,"np.where(df.auto_ownership == 1, df.workplace_location_accessibility, np.nan)" diff --git a/resident/configs/auto_ownership.csv b/resident/configs/auto_ownership.csv index 144f617..760f2fa 100644 --- a/resident/configs/auto_ownership.csv +++ b/resident/configs/auto_ownership.csv @@ -14,7 +14,7 @@ util_hh_income_verylow,household income <15k,@(df.income<15000),coef_household_i util_hh_income_low,household income 15k-30k,@((df.income>=15000) & (df.income<30000)),coef_household_income_1530k_0_CARS,,coef_household_income_1530k_2_CARS,coef_household_income_1530k_3_CARS,coef_household_income_1530k_4_CARS util_hh_income_mid,household income 30-60k,@((df.income>=30000) & (df.income<60000)),coef_household_income_3060k_0_CARS,,coef_household_income_3060k_2_CARS,coef_household_income_3060k_3_CARS,coef_household_income_3060k_4_CARS util_hh_income_veryhigh,household income 100k+,@(df.income>=100000),coef_household_income_100k_0_CARS,,coef_household_income_100k_2_CARS,coef_household_income_100k_3_CARS,coef_household_income_100k_4_CARS -# FIXME no bldgsz equivalent in the Metro data,,,,,, +# FIXME no bldgsz equivalent in the Metro data,,,,,,, # util_attached,attached dwelling,"@np.where(df.bldgsz == 2, 0, 1)",coef_attached_0_CARS,,coef_attached_2_CARS,coef_attached_3_CARS,coef_attached_4_CARS # 0.785 sq miles in 1/2 mile radius * 640 acres per square mile = 502,,,,,,, util_intersection_density,Intersection count in 1/2 mile radius of household,totint/502,coef_intersection_density_0_CARS,,coef_intersection_density_2_CARS,coef_intersection_density_3_CARS,coef_intersection_density_4_CARS diff --git a/resident/configs/auto_ownership_preprocessor.csv b/resident/configs/auto_ownership_preprocessor.csv index 9d7b904..3e341f1 100644 --- a/resident/configs/auto_ownership_preprocessor.csv +++ b/resident/configs/auto_ownership_preprocessor.csv @@ -1,7 +1,7 @@ Description,Target,Expression ,_PERSON_COUNT,"lambda query, persons, households: persons.query(query).groupby('household_id').size().reindex(households.index).fillna(0).astype(np.int8)" ,num_old_retirees,"_PERSON_COUNT('80 <= age', persons, households)" -# averaging disaggregate accessibilities across all household members +# averaging disaggregate accessibilities across all household members,, ,shopping_accessibility_0,persons_merged.groupby('household_id').shopping_accessibility_0.mean().reindex(df.index) ,shopping_accessibility_1,persons_merged.groupby('household_id').shopping_accessibility_1.mean().reindex(df.index) ,shopping_accessibility_2,persons_merged.groupby('household_id').shopping_accessibility_2.mean().reindex(df.index) diff --git a/resident/configs/external_non_mandatory_identification.csv b/resident/configs/external_non_mandatory_identification.csv index 2c84300..39b8df2 100644 --- a/resident/configs/external_non_mandatory_identification.csv +++ b/resident/configs/external_non_mandatory_identification.csv @@ -1,6 +1,6 @@ Label,Description,Expression,external_tour,internal_tour util_dist_to_nearest_ext_station,Distance to nearest external station,dist_to_external_zone,coef_dist_to_nearest_ext_station, -# FIXME need actual external counts at external station - fix in destination choice size terms too +# FIXME need actual external counts at external station - fix in destination choice size terms too,,,, # util_log_size,Log size of nearest station,"@np.log1p(reindex(land_use.external_nonwork, df.closest_external_zone))",coef_log_size_of_nearest_ext_station, util_log_size,Log size of nearest station,"@np.log1p(reindex(land_use.EXTERNAL, df.closest_external_zone))",coef_log_size_of_nearest_ext_station, util_escort,escort tour ASC,"@np.where(df.tour_type == 'escort', 1, 0)",coef_escort, diff --git a/resident/configs/license_holding_status.csv b/resident/configs/license_holding_status.csv index ab4fbeb..f2bd9ab 100644 --- a/resident/configs/license_holding_status.csv +++ b/resident/configs/license_holding_status.csv @@ -1,5 +1,5 @@ Label,Description,Expression,has_license,does_not_have_license -# dummy specification for license holding status model,,, +# dummy specification for license holding status model,,,, util_constant,alternative specific constant,1,coef_has_license_ASC,0 util_unavailable_for_under_16,unavailable for persons under 16 years old,@df.age < 16,coef_unavailable,0 util_age,Age of person in years,@df.age,coef_age,0 diff --git a/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv b/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv index d961142..8eed736 100644 --- a/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv +++ b/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv @@ -6,7 +6,7 @@ duration_reference_bin,durationRefBin,20 departure_shift,departureLinearShift1,"(9-df.start)*(df.start<=9) + (df.start-9)*(df.start>9)" arrival_shift,arrivalLinearShift1,"(29-df.end)*(df.end<=29) + (df.end-29)*(df.end>29)" duration_shift,durationShift,"(20-df.duration)*(df.duration<=20) + (df.duration-20)*(df.duration>20)" -# school specific bins +# school specific bins,, departure_reference_bin_school,departureRefBin_school,9 arrival_reference_bin_school,arrivalRefBin_school,29 duration_reference_bin_school,durationRefBin_school,16 diff --git a/resident/configs/school_escorting_coefficients_inbound.csv b/resident/configs/school_escorting_coefficients_inbound.csv index d6bc194..39aa4a3 100644 --- a/resident/configs/school_escorting_coefficients_inbound.csv +++ b/resident/configs/school_escorting_coefficients_inbound.csv @@ -6,10 +6,10 @@ coef_child_age_u5_noes,-1.36718,F coef_ln_dist_from_school_noes,-0.01787,F coef_ln_dist_from_school_u6_noes,-0.23304,F coef_ln_dist_from_school_6to9_noes,-0.07286,F -coef_child_age_16p_rs,1.97184 -coef_child_age_10to15_rs,1.73544 -coef_child_age_6to9_rs,1.73544 -coef_child_age_u6_rs,1.34996 +coef_child_age_16p_rs,1.97184, +coef_child_age_10to15_rs,1.73544, +coef_child_age_6to9_rs,1.73544, +coef_child_age_u6_rs,1.34996, coef_hh_inc_u25k_noes,0.0,F coef_hh_inc_25to50k_noes,0.0,F coef_zero_auto_hh_noes,0.13165,F diff --git a/resident/configs/school_escorting_preprocessor_outbound.csv b/resident/configs/school_escorting_preprocessor_outbound.csv index 8997826..4d930c8 100644 --- a/resident/configs/school_escorting_preprocessor_outbound.csv +++ b/resident/configs/school_escorting_preprocessor_outbound.csv @@ -12,13 +12,13 @@ Daily activity pattern - chauffer 2,cdap_chauf2,"reindex(persons.cdap_activity, Age - child 1,age_child1,"reindex(persons.age, df.child_id1)" Age - child 2,age_child2,"reindex(persons.age, df.child_id2)" Age - child 3,age_child3,"reindex(persons.age, df.child_id3)" -# Departure times to school and work +# Departure times to school and work,, Preferred departure time to school - child 1,pref_depart_time_school1,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id1)" Preferred departure time to school - child 2,pref_depart_time_school2,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id2)" Preferred departure time to school - child 3,pref_depart_time_school3,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id3)" Preferred departure time to work / univ - chauffer 1,pref_depart_time_chauf1,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id1)" Preferred departure time to work / univ - chauffer 2,pref_depart_time_chauf2,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id2)" -# Distances and times to school and work +# Distances and times to school and work,, School location - child 1,school_location_child1,"reindex(persons.school_zone_id, df.child_id1)" School location - child 2,school_location_child2,"reindex(persons.school_zone_id, df.child_id2)" School location - child 3,school_location_child3,"reindex(persons.school_zone_id, df.child_id3)" diff --git a/resident/configs/school_escorting_preprocessor_outbound_cond.csv b/resident/configs/school_escorting_preprocessor_outbound_cond.csv index 10a9811..2d7e040 100644 --- a/resident/configs/school_escorting_preprocessor_outbound_cond.csv +++ b/resident/configs/school_escorting_preprocessor_outbound_cond.csv @@ -12,13 +12,13 @@ Daily activity pattern - chauffer 2,cdap_chauf2,"reindex(persons.cdap_activity, Age - child 1,age_child1,"reindex(persons.age, df.child_id1)" Age - child 2,age_child2,"reindex(persons.age, df.child_id2)" Age - child 3,age_child3,"reindex(persons.age, df.child_id3)" -# Departure times to school and work +# Departure times to school and work,, Preferred departure time to school - child 1,pref_depart_time_school1,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id1)" Preferred departure time to school - child 2,pref_depart_time_school2,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id2)" Preferred departure time to school - child 3,pref_depart_time_school3,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id3)" Preferred departure time to work / univ - chauffer 1,pref_depart_time_chauf1,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id1)" Preferred departure time to work / univ - chauffer 2,pref_depart_time_chauf2,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id2)" -# Distances and times to school and work +# Distances and times to school and work,, School location - child 1,school_location_child1,"reindex(persons.school_zone_id, df.child_id1)" School location - child 2,school_location_child2,"reindex(persons.school_zone_id, df.child_id2)" School location - child 3,school_location_child3,"reindex(persons.school_zone_id, df.child_id3)" diff --git a/resident/configs/school_location.csv b/resident/configs/school_location.csv index db0940b..162e3df 100644 --- a/resident/configs/school_location.csv +++ b/resident/configs/school_location.csv @@ -15,14 +15,14 @@ util_Distance - age03_prek,Distance - age 0 to 3,"@np.where(df.age<3,_DIST.clip( util_LoggedSize,Logged Size variable - University specific,@df['size_term'].fillna(0).apply(np.log1p),coef_lnSize,coef_lnSize,coef_lnSize,coef_lnSize util_no_attractions,no attractions if logged university size is zero,@df['size_term']==0,-999,-999,-999,-999 util_sample_of_corrections_factor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1,1,1,1 -util_sp_utility_adjustment,shadow price utility adjustment,@df['shadow_price_utility_adjustment'].fillna(0),1,1,1 +util_sp_utility_adjustment,shadow price utility adjustment,@df['shadow_price_utility_adjustment'].fillna(0),1,1,1, #,,,,,, util_ABM2calibration_0-1miles,ABM2 calibration_0-1miles,@(_DIST<1),coef_zero,coef_abmcalib_01miles,coef_abmcalib_01miles,coef_abmcalib_01miles util_ABM2calibration_1-2miles,ABM2 calibration_1-2miles,@(_DIST<2) * (_DIST>=1),coef_zero,coef_abmcalib_12miles,coef_abmcalib_12miles,coef_abmcalib_12miles util_ABM2calibration_2-3miles,ABM2 calibration_2-3miles,@(_DIST<3) * (_DIST>=2),coef_zero,coef_abmcalib_23miles,coef_abmcalib_23miles,coef_abmcalib_23miles util_ABM2calibration_0-20miles,ABM2 calibration_0-20miles,@(_DIST<20) * (_DIST),coef_zero,coef_abmcalib_20miles,coef_abmcalib_20miles,coef_abmcalib_20miles #,,,,,, -#calibration constants,,, +#calibration constants,,,,,, util_Calibration 0-2 - miles,Calibration 0-2 - miles,@_DIST<=2,,coef_distance_0_2miles,coef_distance_2_5miles,coef_distance_5_10miles util_Calibration 2-5 - miles,Calibration 2-5 - miles,@(_DIST>2) * (_DIST<=5),,coef_distance_0_2miles,coef_distance_2_5miles,coef_distance_5_10miles util_Calibration 5-10 - miles,Calibration 5-10 - miles,@(_DIST>5) * (_DIST<=10),,coef_distance_0_2miles,coef_distance_2_5miles,coef_distance_5_10miles diff --git a/resident/configs/stop_frequency_annotate_tours_preprocessor.csv b/resident/configs/stop_frequency_annotate_tours_preprocessor.csv index bd2847c..1a7a86d 100644 --- a/resident/configs/stop_frequency_annotate_tours_preprocessor.csv +++ b/resident/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -21,7 +21,7 @@ Number of Adults (>= 16 years old),num_adult,"reindex_i(_HH_PERSON_COUNT('age >= ,tour_mode_is_drive_transit,df.tour_mode.isin(DRIVE_TO_TRANSIT_MODES) ,tour_mode_is_non_motorized,df.tour_mode.isin(NONMOTORIZED_MODES) ,tour_mode_is_schbus,df.tour_mode.isin(['SCH_BUS']) - +,, #,, #num_work_tours already defined,, ,num_total_tours,"reindex_i(df.groupby('person_id').size(), df.person_id)" diff --git a/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv b/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv index c269dd4..9cabf28 100644 --- a/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv +++ b/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv @@ -8,22 +8,22 @@ local,_DF_IS_TOUR,'tour_type' in df.columns, ,sr2_veh_option,"np.where(is_atwork_subtour, _parent_tour_veh, df.get('vehicle_occup_2', np.nan))", ,sr3p_veh_option,"np.where(is_atwork_subtour, _parent_tour_veh, df.get('vehicle_occup_3.5', np.nan))", #AV factors,,, -SOV tour Vehicle is AV,sov_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_1', np.nan)), pd.Series(sov_veh_option, dtype = 'str').str.contains('AV'), False)" -SR2 tour Vehicle is AV,sr2_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_2', np.nan)), pd.Series(sr2_veh_option, dtype = 'str').str.contains('AV'), False)" -SR3 tour Vehicle is AV,sr3_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_3.5', np.nan)), pd.Series(sr3p_veh_option, dtype = 'str').str.contains('AV'), False)" -SOV AV IVT Factor Adjustment,autoIVTFactor_DA,"np.where(sov_tour_uses_av, autoIVTFactorAV, 1.0)" -SR2 AV IVT Factor Adjustment,autoIVTFactor_SR2,"np.where(sr2_tour_uses_av, autoIVTFactorAV, 1.0)" -SR3+ AV IVT Factor Adjustment,autoIVTFactor_SR3,"np.where(sr3_tour_uses_av, autoIVTFactorAV, 1.0)" -SOV AV Parking Cost Factor Adjustment,autoParkingCostFactor_DA,"np.where(sov_tour_uses_av, autoParkingCostFactorAV, 1.0)" -SR2 AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR2,"np.where(sr2_tour_uses_av, autoParkingCostFactorAV, 1.0)" -SR3+ AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR3,"np.where(sr3_tour_uses_av, autoParkingCostFactorAV, 1.0)" -SOV AV Auto Terminal Time Factor,autoTermTimeFactor_DA,"np.where(sov_tour_uses_av, autoTerminalTimeFactorAV, 1.0)" -SR2 AV Auto Terminal Time Factor,autoTermTimeFactor_SR2,"np.where(sr2_tour_uses_av, autoTerminalTimeFactorAV, 1.0)" -SR3+ AV Auto Terminal Time Factor,autoTermTimeFactor_SR3,"np.where(sr3_tour_uses_av, autoTerminalTimeFactorAV, 1.0)" -SOV AV Auto Terminal Time Factor,autoCPMFactor_DA,"np.where(sov_tour_uses_av, autoCostPerMileFactorAV, 1.0)" -SR2 AV Auto Terminal Time Factor,autoCPMFactor_SR2,"np.where(sr2_tour_uses_av, autoCostPerMileFactorAV, 1.0)" -SR3+ AV Auto Terminal Time Factor,autoCPMFactor_SR3,"np.where(sr3_tour_uses_av, autoCostPerMileFactorAV, 1.0)" -AV Min Age to Drive Alone,minimumAgeDA,"np.where(sov_tour_uses_av, minAgeDriveAloneAV, 16)" +SOV tour Vehicle is AV,sov_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_1', np.nan)), pd.Series(sov_veh_option, dtype = 'str').str.contains('AV'), False)", +SR2 tour Vehicle is AV,sr2_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_2', np.nan)), pd.Series(sr2_veh_option, dtype = 'str').str.contains('AV'), False)", +SR3 tour Vehicle is AV,sr3_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_3.5', np.nan)), pd.Series(sr3p_veh_option, dtype = 'str').str.contains('AV'), False)", +SOV AV IVT Factor Adjustment,autoIVTFactor_DA,"np.where(sov_tour_uses_av, autoIVTFactorAV, 1.0)", +SR2 AV IVT Factor Adjustment,autoIVTFactor_SR2,"np.where(sr2_tour_uses_av, autoIVTFactorAV, 1.0)", +SR3+ AV IVT Factor Adjustment,autoIVTFactor_SR3,"np.where(sr3_tour_uses_av, autoIVTFactorAV, 1.0)", +SOV AV Parking Cost Factor Adjustment,autoParkingCostFactor_DA,"np.where(sov_tour_uses_av, autoParkingCostFactorAV, 1.0)", +SR2 AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR2,"np.where(sr2_tour_uses_av, autoParkingCostFactorAV, 1.0)", +SR3+ AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR3,"np.where(sr3_tour_uses_av, autoParkingCostFactorAV, 1.0)", +SOV AV Auto Terminal Time Factor,autoTermTimeFactor_DA,"np.where(sov_tour_uses_av, autoTerminalTimeFactorAV, 1.0)", +SR2 AV Auto Terminal Time Factor,autoTermTimeFactor_SR2,"np.where(sr2_tour_uses_av, autoTerminalTimeFactorAV, 1.0)", +SR3+ AV Auto Terminal Time Factor,autoTermTimeFactor_SR3,"np.where(sr3_tour_uses_av, autoTerminalTimeFactorAV, 1.0)", +SOV AV Auto Terminal Time Factor,autoCPMFactor_DA,"np.where(sov_tour_uses_av, autoCostPerMileFactorAV, 1.0)", +SR2 AV Auto Terminal Time Factor,autoCPMFactor_SR2,"np.where(sr2_tour_uses_av, autoCostPerMileFactorAV, 1.0)", +SR3+ AV Auto Terminal Time Factor,autoCPMFactor_SR3,"np.where(sr3_tour_uses_av, autoCostPerMileFactorAV, 1.0)", +AV Min Age to Drive Alone,minimumAgeDA,"np.where(sov_tour_uses_av, minAgeDriveAloneAV, 16)", reimburseProportion placeholder,reimburseProportion,0, "Tour duration, in hours",tourDuration,df.duration/2, #,,, @@ -50,7 +50,7 @@ popempdenpermi calculated in preprocessor and input via landuse file,_origin_den ,origin_zone_taxi_wait_time_sd,"origin_density.map({k: v for k, v in Taxi_waitTime_sd.items()})", ,dest_zone_taxi_wait_time_mean,"dest_density.map({k: v for k, v in Taxi_waitTime_mean.items()})", ,dest_zone_taxi_wait_time_sd,"dest_density.map({k: v for k, v in Taxi_waitTime_sd.items()})", -# ,, Note that the mean and standard deviation are not the values for the distribution itself but of the underlying normal distribution it is derived from +# ,, Note that the mean and standard deviation are not the values for the distribution itself but of the underlying normal distribution it is derived from, ,origTaxiWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_taxi_wait_time_mean, sigma=origin_zone_taxi_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)", ,destTaxiWaitTime,"rng.lognormal_for_df(df, mu=dest_zone_taxi_wait_time_mean, sigma=dest_zone_taxi_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)", ,origin_zone_singleTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_single_waitTime_mean.items()})", @@ -155,7 +155,7 @@ bike logsum outbound (same as inbound),bikeLSO,0, bike time inbound,bike_time_inb,do_skims['DISTWALK'] / bikeSpeed * 60, bike time outbound,bike_time_out,od_skims['DISTWALK'] / bikeSpeed * 60, bike availability,bikeAvailable,(bikeLSI > -300) & (bikeLSO > -300) & (od_skims['DISTWALK']>0), - +#,,, #,,, "Cost factor for shared 2 tours, 1/(2^0.8)",costFactorS2,0.57, "Cost factor for shared 3+ tours, 1/(3.5^0.8)",costFactorS3,0.37, @@ -179,16 +179,16 @@ Determining Tour Destination,destination,df.destination if 'destination' in df.c ,walk_local_available,(odt_skims['WTW_TIV']>0) & (dot_skims['WTW_TIV']>0), ,knr_local_available,"(odt_skims['KTW_TIV']>0) & (dot_skims['WTK_TIV']>0) if KNR_available else 0", ,tnc_local_available,"(odt_skims['KTW_TIV']>0) & (dot_skims['WTK_TIV']>0) if KNR_available else 0", -#KNR times +#KNR times,,, ,knr_total_tiv,"(odt_skims['KTW_TIV'] + dot_skims['WTK_TIV']) if KNR_available else 0", -,knr_total_fwt,"(odt_skims['KTW_FWT']) + (dot_skims['WTK_FWT']) if KNR_available else 0" -,knr_total_xwt,"(odt_skims['KTW_XWT'] + dot_skims['WTK_XWT']) if KNR_available else 0" -,knr_acc_egg_time,"(odt_skims['KTW_ACC'] + dot_skims['WTK_EGR']) if KNR_available else 0" +,knr_total_fwt,"(odt_skims['KTW_FWT']) + (dot_skims['WTK_FWT']) if KNR_available else 0", +,knr_total_xwt,"(odt_skims['KTW_XWT'] + dot_skims['WTK_XWT']) if KNR_available else 0", +,knr_acc_egg_time,"(odt_skims['KTW_ACC'] + dot_skims['WTK_EGR']) if KNR_available else 0", ,knr_other_walk_time,"(odt_skims['KTW_AUX'] + dot_skims['WTK_AUX']) if KNR_available else 0", -,ktw_odt_xfr,"odt_skims['KTW_XFR'] if KNR_available else 0" -,wtk_odt_xfr,"dot_skims['WTK_XFR'] if KNR_available else 0" -,knr_stop_constant,"(odt_skims['KTW_RST'] + dot_skims['WTK_RST']) if KNR_available else 0" -,knr_veh_constant,"(odt_skims['KTW_VTC'] + dot_skims['WTK_VTC']) if KNR_available else 0" +,ktw_odt_xfr,"odt_skims['KTW_XFR'] if KNR_available else 0", +,wtk_odt_xfr,"dot_skims['WTK_XFR'] if KNR_available else 0", +,knr_stop_constant,"(odt_skims['KTW_RST'] + dot_skims['WTK_RST']) if KNR_available else 0", +,knr_veh_constant,"(odt_skims['KTW_VTC'] + dot_skims['WTK_VTC']) if KNR_available else 0", # Micromobility times,,, ebike time inbound,ebike_time_inb,bike_time_inb * bikeSpeed / ebikeSpeed, ebike time outbound,ebike_time_out,bike_time_out * bikeSpeed / ebikeSpeed, @@ -249,5 +249,5 @@ first wait times pnr,iwait_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, ( stop type constant pnr,stop_type_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, (ldt_skims['WTW_RST'] + dlt_skims['WTW_RST']), 0)", vehicle type constant pnr,vehicle_type_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, (ldt_skims['WTW_VTC'] + dlt_skims['WTW_VTC']), 0)", walking access and egress times at dest end pnr,walk_at_dest_end_pnr,"2 * dest_local_time", -parking cost pnr,parking_cost_pnr,"0 if ((not _CALC_PNR) or ('PNR_PRKCST' not in land_use.columns)) else np.where(is_valid_pnr,reindex(land_use.PNR_PRKCST, df.pnr_zone_id), 0)" +parking cost pnr,parking_cost_pnr,"0 if ((not _CALC_PNR) or ('PNR_PRKCST' not in land_use.columns)) else np.where(is_valid_pnr,reindex(land_use.PNR_PRKCST, df.pnr_zone_id), 0)", fare pnr,fare_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, (ldt_skims['fare'] + dlt_skims['fare']), 0)", diff --git a/resident/configs/trip_destination_sample.csv b/resident/configs/trip_destination_sample.csv index 853a754..a89518d 100644 --- a/resident/configs/trip_destination_sample.csv +++ b/resident/configs/trip_destination_sample.csv @@ -2,7 +2,7 @@ Description,Expression,work,univ,school,escort,shopping,eatout,othmaint,social,o ,"_od_DIST@od_skims[('SOV_M_DIST', 'MD')]",1,1,1,1,1,1,1,1,1,1 ,"_dp_DIST@dp_skims[('SOV_M_DIST', 'MD')]",1,1,1,1,1,1,1,1,1,1 ,"_op_DIST@op_skims[('SOV_M_DIST', 'MD')]",1,1,1,1,1,1,1,1,1,1 -# next line gets max MAZ micromobility access time in destination TAZ +# next line gets max MAZ micromobility access time in destination TAZ,,,,,,,,,,, ,"_d_microAccTime@land_use.sort_values(by='ESCOOACCTIME',ascending=False).drop_duplicates('TAZ',keep='first').set_index('TAZ')['ESCOOACCTIME'].reindex(df.dest_taz)",1,1,1,1,1,1,1,1,1,1 #,,,,,,,,,,, size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose))",1,1,1,1,1,1,1,1,1,1 diff --git a/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv b/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv index 5e6566d..c437528 100644 --- a/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv +++ b/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv @@ -245,7 +245,7 @@ microtransit/nev egress transfer,mtnev_egr_xfer_out,microtransit_local_egress_av microtransit/nev egress transfer,mtnev_egr_xfer_in,microtransit_local_egress_available_in | nev_local_egress_available_in #,, transit subsidi pass discount,transitSubsidyPassDiscount,"np.where(df.transit_pass_subsidy | df.transit_pass_ownership,0,1)" -#KNR times +#KNR times,, ,ktw_odt_ivt,"odt_skims['KTW_TIV'] if KNR_available else 0" ,ktw_odt_fwt,"odt_skims['KTW_FWT'] if KNR_available else 0" ,ktw_odt_xwt,"odt_skims['KTW_XWT'] if KNR_available else 0" diff --git a/resident/configs/trip_scheduling_preprocessor.csv b/resident/configs/trip_scheduling_preprocessor.csv index 732a58d..fd4f40d 100644 --- a/resident/configs/trip_scheduling_preprocessor.csv +++ b/resident/configs/trip_scheduling_preprocessor.csv @@ -1,6 +1,6 @@ Description,Target,Expression ,periods_left,(df.latest - df.earliest) -# binning the periods differently for inbound and outbound +# binning the periods differently for inbound and outbound,, ,periods_left_min,"np.where(df['outbound'], periods_left.clip(upper=25), periods_left.clip(upper=34))" ,periods_left_max,"np.where(((periods_left >= 25) & (df['outbound'])) | ((periods_left >= 34) & (~df['outbound'])), 47, periods_left)" ,tour_purpose,"reindex(tours.tour_type, df.tour_id)" diff --git a/resident/configs/vehicle_allocation.csv b/resident/configs/vehicle_allocation.csv index 7a4bd77..c5c83cd 100644 --- a/resident/configs/vehicle_allocation.csv +++ b/resident/configs/vehicle_allocation.csv @@ -1,15 +1,15 @@ Label,Description,Expression,veh_num1,veh_num2,veh_num3,veh_num4,non_hh_veh -#,Availability Conditions,,,, +#,Availability Conditions,,,,,, util_alt1_unavail,Household does not own vehicle,"veh_num1.isna() | (veh_num1 == '')",coef_unavail,0,0,0,0 util_alt2_unavail,Household does not own vehicle,"veh_num2.isna() | (veh_num2 == '')",0,coef_unavail,0,0,0 util_alt3_unavail,Household does not own vehicle,"veh_num3.isna() | (veh_num3 == '')",0,0,coef_unavail,0,0 util_alt4_unavail,Household does not own vehicle,"veh_num4.isna() | (veh_num4 == '')",0,0,0,coef_unavail,0 -#,BEV Range,,,, +#,BEV Range,,,,,, util_dstgtrng1,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_1) & (df.fuel_type_1 == 'BEV'), 1, 0)",coef_dstgtrng,0,0,0,0 util_dstgtrng2,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_2) & (df.fuel_type_2 == 'BEV'), 1, 0)",0,coef_dstgtrng,0,0,0 util_dstgtrng3,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_3) & (df.fuel_type_3 == 'BEV'), 1, 0)",0,0,coef_dstgtrng,0,0 util_dstgtrng4,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_4) & (df.fuel_type_4 == 'BEV'), 1, 0)",0,0,0,coef_dstgtrng,0 -#,Vehicles & Driver interactions,,,, +#,Vehicles & Driver interactions,,,,,, util_vehltdr_nh,Vehicles < Drivers -- Non-Household Vehicle,"hh_veh_lt_drivers",0,0,0,0,coef_vehltdr_nh util_vehltdr_nh,Vehicles > Drivers -- Non-Household Vehicle,"hh_veh_gt_drivers",0,0,0,0,coef_vehgtdr_nh util_vehltdr_van1,Vehicles > Drivers -- Van alt 1,"hh_veh_gt_drivers * (body_type_1 == 'Van')",coef_vehltdr_van,0,0,0,0 @@ -40,7 +40,7 @@ util_vehltdr_age1,Vehicles > Drivers -- Age alt 1,"hh_veh_gt_drivers * age_1",co util_vehltdr_age2,Vehicles > Drivers -- Age alt 2,"hh_veh_gt_drivers * age_2",0,coef_vehltdr_age,0,0,0 util_vehltdr_age3,Vehicles > Drivers -- Age alt 3,"hh_veh_gt_drivers * age_3",0,0,coef_vehltdr_age,0,0 util_vehltdr_age4,Vehicles > Drivers -- Age alt 4,"hh_veh_gt_drivers * age_4",0,0,0,coef_vehltdr_age,0 -#,Occupancy interactions,,,, +#,Occupancy interactions,,,,,, util_maxocc_van1,Maximum Occupancy -- Van alt 1,"@occup * (df.body_type_1 == 'Van')",coef_maxocc_van,0,0,0,0 util_maxocc_van2,Maximum Occupancy -- Van alt 2,"@occup * (df.body_type_2 == 'Van')",0,coef_maxocc_van,0,0,0 util_maxocc_van3,Maximum Occupancy -- Van alt 3,"@occup * (df.body_type_3 == 'Van')",0,0,coef_maxocc_van,0,0 @@ -62,7 +62,7 @@ util_maxocc_age2,Maximum Occupancy -- Age alt 2,"@occup * df.age_2",0,coef_maxoc util_maxocc_age3,Maximum Occupancy -- Age alt 3,"@occup * df.age_3",0,0,coef_maxocc_age,0,0 util_maxocc_age4,Maximum Occupancy -- Age alt 4,"@occup * df.age_4",0,0,0,coef_maxocc_age,0 util_maxocc_nh,Maximum Occupancy -- Age alt 1,"@occup",0,0,0,0,util_maxocc_nh -#,Alternative Specific Constants,,,, +#,Alternative Specific Constants,,,,,, util_non_hh,Non-Household Vehicle Constant,"1",0,0,0,0,coef_non_hh util_van1,Van ASC alt 1,"(body_type_1 == 'Van')",coef_van,0,0,0,0 util_van2,Van ASC alt 2,"(body_type_2 == 'Van')",0,coef_van,0,0,0 From a8b8eaf14c33ae84c4923239e811608b58076286 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Tue, 28 Apr 2026 13:33:30 -0500 Subject: [PATCH 30/46] define KNR_available --- resident/configs/constants.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resident/configs/constants.yaml b/resident/configs/constants.yaml index d78abb1..63b0462 100644 --- a/resident/configs/constants.yaml +++ b/resident/configs/constants.yaml @@ -350,4 +350,6 @@ PkVTCr: 0.1858 OpVTCa: 0.0432 OpVTCe: 0.0984 OpVTCl: 0.1442 -OpVTCr: 0.1442 \ No newline at end of file +OpVTCr: 0.1442 + +KNR_available: True \ No newline at end of file From f9115b415ba7f6c76ceefee04ffa51802ec75b3c Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Fri, 1 May 2026 09:24:13 -0400 Subject: [PATCH 31/46] Bugfix in pstudent annotation --- resident/configs/annotate_persons.csv | 8 ++++---- .../stop_frequency_annotate_tours_preprocessor.csv | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resident/configs/annotate_persons.csv b/resident/configs/annotate_persons.csv index b695671..7cc9e49 100644 --- a/resident/configs/annotate_persons.csv +++ b/resident/configs/annotate_persons.csv @@ -15,10 +15,10 @@ student category,pstudent,"pd.Series(np.zeros(len(persons)), index=persons.index ,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" ,pstudent,"np.where((persons.SCHG < 1) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" ,pstudent,"np.where((persons.SCHG < 1) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16) & (pemploy != 1), PSTUDENT_UNIVERSITY, pstudent)" -,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16) & (pemploy != 1), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.age <= 19) & (pemploy != 1) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.age > 19) & (pemploy != 1) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age <= 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age > 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" ,pstudent,"np.where(pstudent == 0, 3, pstudent)" person type,ptype,"pd.Series(PTYPE_NONWORK, index=persons.index)" ,ptype,"np.where(persons.age >= 65, PTYPE_RETIRED, ptype)" diff --git a/resident/configs/stop_frequency_annotate_tours_preprocessor.csv b/resident/configs/stop_frequency_annotate_tours_preprocessor.csv index 1a7a86d..7ad0ca5 100644 --- a/resident/configs/stop_frequency_annotate_tours_preprocessor.csv +++ b/resident/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -21,7 +21,7 @@ Number of Adults (>= 16 years old),num_adult,"reindex_i(_HH_PERSON_COUNT('age >= ,tour_mode_is_drive_transit,df.tour_mode.isin(DRIVE_TO_TRANSIT_MODES) ,tour_mode_is_non_motorized,df.tour_mode.isin(NONMOTORIZED_MODES) ,tour_mode_is_schbus,df.tour_mode.isin(['SCH_BUS']) -,, +#,, #,, #num_work_tours already defined,, ,num_total_tours,"reindex_i(df.groupby('person_id').size(), df.person_id)" From cb43357531f94660fcdd3327263d202c5bd6fdf7 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Fri, 1 May 2026 15:24:14 -0400 Subject: [PATCH 32/46] Trip mode choice bugfixes --- resident/configs/trip_mode_choice.yaml | 1 + resident/configs_estimation/trip_mode_choice.csv | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/resident/configs/trip_mode_choice.yaml b/resident/configs/trip_mode_choice.yaml index 7f87b22..ca7e028 100644 --- a/resident/configs/trip_mode_choice.yaml +++ b/resident/configs/trip_mode_choice.yaml @@ -82,6 +82,7 @@ TOURS_MERGED_CHOOSER_COLUMNS: - end - transit_pass_subsidy - transit_pass_ownership + - telecommute_frequency MODE_CHOICE_LOGSUM_COLUMN_NAME: mode_choice_logsum diff --git a/resident/configs_estimation/trip_mode_choice.csv b/resident/configs_estimation/trip_mode_choice.csv index cc69709..c426cb2 100644 --- a/resident/configs_estimation/trip_mode_choice.csv +++ b/resident/configs_estimation/trip_mode_choice.csv @@ -87,7 +87,7 @@ util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,- # util_PNR_LOC - Female,PNR_LOC - Female,@(df.female),,,,,,,coef_female_tran,,,,,,,, # util_PNR_LOC - Destination Employment Density,PNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,coef_dEmpDen_dTran,,,,,,,, #,,,,,,,,,,,,,,,,, -util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,(knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, +util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,@(df.knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, util_KNR_LOC_In_vehicle_time_out,KNR_LOC - In-vehicle time,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, From 841334ed04c618e297ab8504158474c4bcb8a5ed Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 6 May 2026 12:44:30 -0400 Subject: [PATCH 33/46] remove hard-coded external alternative --- .../configs/external_non_mandatory_identification.yaml | 2 ++ .../configs/non_mandatory_tour_frequency_alternatives.csv | 3 ++- resident/extensions/external_identification.py | 7 +++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/resident/configs/external_non_mandatory_identification.yaml b/resident/configs/external_non_mandatory_identification.yaml index c2a882b..d9b4bda 100644 --- a/resident/configs/external_non_mandatory_identification.yaml +++ b/resident/configs/external_non_mandatory_identification.yaml @@ -9,3 +9,5 @@ LOGIT_TYPE: MNL EXTERNAL_COL_NAME: is_external_tour # set to True if not external but CHOOSER_FILTER_COLUMN_NAME is True INTERNAL_COL_NAME: is_internal_tour + +EXTERNAL_TOUR_ALT: 1 \ No newline at end of file diff --git a/resident/configs/non_mandatory_tour_frequency_alternatives.csv b/resident/configs/non_mandatory_tour_frequency_alternatives.csv index 77b741b..a44fba3 100644 --- a/resident/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/resident/configs/non_mandatory_tour_frequency_alternatives.csv @@ -198,4 +198,5 @@ escort,shopping,othmaint,eatout,social,othdiscr 2,2,1,0,0,0 2,2,1,0,1,0 1,2,1,1,1,0 -2,1,1,0,1,1 \ No newline at end of file +2,1,1,0,1,1 +2,1,2,1,0,0 \ No newline at end of file diff --git a/resident/extensions/external_identification.py b/resident/extensions/external_identification.py index 2a99e2b..66d1c4b 100644 --- a/resident/extensions/external_identification.py +++ b/resident/extensions/external_identification.py @@ -39,6 +39,7 @@ class ExternalIdentificationSettings(LogitComponentSettings, extra="forbid"): preprocessor: PreprocessorSettings | None = None EXTERNAL_WORKER_ALT: int | None = 0 + EXTERNAL_TOUR_ALT: int | None = 0 def determine_closest_external_station( @@ -279,12 +280,10 @@ def set_external_tour_variables(state, tours, choices, model_settings, trace_lab if external_col_name is not None: tours[external_col_name] = ( - (choices == 0).reindex(tours.index).fillna(False).astype(bool) + (choices == model_settings.EXTERNAL_TOUR_ALT).reindex(tours.index).fillna(False).astype(bool) ) if internal_col_name is not None: - tours[internal_col_name] = ( - (choices == 1).reindex(tours.index).fillna(True).astype(bool) - ) + tours[internal_col_name] = ~tours[external_col_name] # - annotate tours table if "annotate_tours" in model_settings: From 63da533a9a84b069ac02cdaf28381d70e4dd2c0f Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 7 May 2026 12:39:54 -0400 Subject: [PATCH 34/46] Transit pass subsidy spec changes --- resident/configs/transit_pass_subsidy.csv | 4 ++++ resident/configs/transit_pass_subsidy_coefficients.csv | 4 ++++ resident/configs/transit_pass_subsidy_preprocessor.csv | 4 +++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/resident/configs/transit_pass_subsidy.csv b/resident/configs/transit_pass_subsidy.csv index 2082f6e..33397b5 100644 --- a/resident/configs/transit_pass_subsidy.csv +++ b/resident/configs/transit_pass_subsidy.csv @@ -21,3 +21,7 @@ util_availability,Availability of transit pass,transit_subsidy_available==False, util_ft_ASC,ptype_ft calibration constant,@df.ptype == 1,0,coef_ft_asc util_pt_ASC,ptype_pt calibration constant,@df.ptype == 2,0,coef_pt_asc util_un_ASC,ptype_un calibration constant,@df.ptype == 3,0,coef_un_asc +util_transit_ivt_home_to_work_walk_peak,Walk-transit home to work peak availability,_transit_ivt_home_to_work_walk_peak,0,coef_transit_ivt_home_to_work_walk_peak +util_transit_ivt_home_to_work_drive_peak,Drive-transit home to work peak availability,_transit_ivt_home_to_work_drive_peak,0,coef_transit_ivt_home_to_work_drive_peak +util_transit_ivt_home_to_school_walk_peak,Walk-transit home to school peak availability,_transit_ivt_home_to_school_walk_peak,0,coef_transit_ivt_home_to_school_walk_peak +util_transit_ivt_home_to_school_drive_peak,Drive-transit home to school peak availability,_transit_ivt_home_to_school_drive_peak,0,coef_transit_ivt_home_to_school_drive_peak diff --git a/resident/configs/transit_pass_subsidy_coefficients.csv b/resident/configs/transit_pass_subsidy_coefficients.csv index a7b3539..e23c1e6 100644 --- a/resident/configs/transit_pass_subsidy_coefficients.csv +++ b/resident/configs/transit_pass_subsidy_coefficients.csv @@ -21,3 +21,7 @@ coef_unavailable,-999.0,F coef_ft_asc,-0.240,F coef_pt_asc,-0.250,F coef_un_asc,0.30,F +coef_transit_ivt_home_to_work_walk_peak,0.3,F +coef_transit_ivt_home_to_work_drive_peak,0.3,F +coef_transit_ivt_home_to_school_walk_peak,0.3,F +coef_transit_ivt_home_to_school_drive_peak,0.3,F \ No newline at end of file diff --git a/resident/configs/transit_pass_subsidy_preprocessor.csv b/resident/configs/transit_pass_subsidy_preprocessor.csv index a467db7..6875076 100644 --- a/resident/configs/transit_pass_subsidy_preprocessor.csv +++ b/resident/configs/transit_pass_subsidy_preprocessor.csv @@ -1,5 +1,7 @@ Description,Target,Expression ,_transit_ivt_home_to_work_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('WTW_TIV', 'AM'))" ,_transit_ivt_home_to_work_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" -,transit_subsidy_available,((_transit_ivt_home_to_work_walk_peak > 0) | (_transit_ivt_home_to_work_drive_peak > 0)) & (persons.workplace_zone_id > 0) +,_transit_ivt_home_to_school_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('WTW_TIV', 'AM'))" +,_transit_ivt_home_to_school_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" +,transit_subsidy_available,(persons.workplace_zone_id > 0) | (persons.school_zone_id > 0) ,trn_wk_access_hh,"np.where(persons.workplace_zone_id > 0, reindex(accessibility.trPkHH, persons.workplace_zone_id), 0)" \ No newline at end of file From 547655c29f87a548dbacb0df872a9fdddd54e8d8 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 7 May 2026 12:45:46 -0400 Subject: [PATCH 35/46] Compatibility fixes for previous commit --- resident/configs/transit_pass_subsidy.csv | 8 ++++---- resident/configs/transit_pass_subsidy_preprocessor.csv | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/resident/configs/transit_pass_subsidy.csv b/resident/configs/transit_pass_subsidy.csv index 33397b5..3e3fdf2 100644 --- a/resident/configs/transit_pass_subsidy.csv +++ b/resident/configs/transit_pass_subsidy.csv @@ -21,7 +21,7 @@ util_availability,Availability of transit pass,transit_subsidy_available==False, util_ft_ASC,ptype_ft calibration constant,@df.ptype == 1,0,coef_ft_asc util_pt_ASC,ptype_pt calibration constant,@df.ptype == 2,0,coef_pt_asc util_un_ASC,ptype_un calibration constant,@df.ptype == 3,0,coef_un_asc -util_transit_ivt_home_to_work_walk_peak,Walk-transit home to work peak availability,_transit_ivt_home_to_work_walk_peak,0,coef_transit_ivt_home_to_work_walk_peak -util_transit_ivt_home_to_work_drive_peak,Drive-transit home to work peak availability,_transit_ivt_home_to_work_drive_peak,0,coef_transit_ivt_home_to_work_drive_peak -util_transit_ivt_home_to_school_walk_peak,Walk-transit home to school peak availability,_transit_ivt_home_to_school_walk_peak,0,coef_transit_ivt_home_to_school_walk_peak -util_transit_ivt_home_to_school_drive_peak,Drive-transit home to school peak availability,_transit_ivt_home_to_school_drive_peak,0,coef_transit_ivt_home_to_school_drive_peak +util_transit_ivt_home_to_work_walk_peak,Walk-transit home to work peak availability,@df.transit_ivt_home_to_work_walk_peak,0,coef_transit_ivt_home_to_work_walk_peak +util_transit_ivt_home_to_work_drive_peak,Drive-transit home to work peak availability,@df.transit_ivt_home_to_work_drive_peak,0,coef_transit_ivt_home_to_work_drive_peak +util_transit_ivt_home_to_school_walk_peak,Walk-transit home to school peak availability,@df.transit_ivt_home_to_school_walk_peak,0,coef_transit_ivt_home_to_school_walk_peak +util_transit_ivt_home_to_school_drive_peak,Drive-transit home to school peak availability,@df.transit_ivt_home_to_school_drive_peak,0,coef_transit_ivt_home_to_school_drive_peak diff --git a/resident/configs/transit_pass_subsidy_preprocessor.csv b/resident/configs/transit_pass_subsidy_preprocessor.csv index 6875076..15f16ee 100644 --- a/resident/configs/transit_pass_subsidy_preprocessor.csv +++ b/resident/configs/transit_pass_subsidy_preprocessor.csv @@ -1,7 +1,7 @@ Description,Target,Expression -,_transit_ivt_home_to_work_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('WTW_TIV', 'AM'))" -,_transit_ivt_home_to_work_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" -,_transit_ivt_home_to_school_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('WTW_TIV', 'AM'))" -,_transit_ivt_home_to_school_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" +,transit_ivt_home_to_work_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('WTW_TIV', 'AM'))" +,transit_ivt_home_to_work_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" +,transit_ivt_home_to_school_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('WTW_TIV', 'AM'))" +,transit_ivt_home_to_school_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" ,transit_subsidy_available,(persons.workplace_zone_id > 0) | (persons.school_zone_id > 0) ,trn_wk_access_hh,"np.where(persons.workplace_zone_id > 0, reindex(accessibility.trPkHH, persons.workplace_zone_id), 0)" \ No newline at end of file From 2c57edc8391c3a34a872ebfeec35ea3fa5d8bcc3 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 7 May 2026 18:20:57 -0400 Subject: [PATCH 36/46] Fix auto sufficiency condition --- resident/configs/tour_mode_choice.csv | 8 ++++---- resident/configs/tour_mode_choice.yaml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/resident/configs/tour_mode_choice.csv b/resident/configs/tour_mode_choice.csv index f296dff..8f687f5 100644 --- a/resident/configs/tour_mode_choice.csv +++ b/resident/configs/tour_mode_choice.csv @@ -172,11 +172,11 @@ util_calib_KNR Transit - Distance Parameter,abm2+ calibration constant,"@np.maxi util_calib_Walk-Transit - Distance Parameter,abm2+ calibration constant,"@np.maximum((200+(-133*df.da_dist_skims_out)),0)",,,,,,coef_calib_distance_WALK_TRANSIT,,,,,,,,, util_calib_PNR Transit - Distance Parameter ,abm2+ calibration constant,"@np.maximum((45+(-2.5*df.da_dist_skims_out)),0)",,,,,,,coef_calib_distance_PNR_TRANSIT,,,,,,,, util_calib_zeroautohhindiv,abm2+ calibration constant,@(df.is_indiv & (df.auto_ownership == 0)),,coef_calib_zeroautohhindivtou_SHARED2,coef_calib_zeroautohhindivtou_SHARED3,coef_calib_zeroautohhindivtou_WALK,coef_calib_zeroautohhindivtou_BIKE,coef_calib_zeroautohhindivtou_WALK_TRANSIT,coef_calib_zeroautohhindivtou_PNR_TRANSIT,coef_calib_zeroautohhindivtou_KNR_TRANSIT,coef_calib_zeroautohhindivtou_TNC_TRANSIT,coef_calib_zeroautohhindivtou_TAXI,coef_calib_zeroautohhindivtou_TNC_SINGLE,coef_calib_zeroautohhindivtou_TNC_SHARED,coef_calib_zeroautohhindivtou_SCH_BUS,coef_calib_zeroautohhindivtou_EBIKE,coef_calib_zeroautohhindivtou_ESCOOTER -util_calib_autodeficienthh,abm2+ calibration constant,@(df.is_indiv & (df.auto_ownership < df.num_adults) & (df.auto_ownership > 0)),,coef_calib_autodeficienthhind_SHARED2,coef_calib_autodeficienthhind_SHARED3,coef_calib_autodeficienthhind_WALK,coef_calib_autodeficienthhind_BIKE,coef_calib_autodeficienthhind_WALK_TRANSIT,coef_calib_autodeficienthhind_PNR_TRANSIT,coef_calib_autodeficienthhind_KNR_TRANSIT,coef_calib_autodeficienthhind_TNC_TRANSIT,coef_calib_autodeficienthhind_TAXI,coef_calib_autodeficienthhind_TNC_SINGLE,coef_calib_autodeficienthhind_TNC_SHARED,coef_calib_autodeficienthhind_SCH_BUS,coef_calib_autodeficienthhind_EBIKE,coef_calib_autodeficienthhind_ESCOOTER -util_calib_autosufficienth,abm2+ calibration constant,@(df.is_indiv & (df.auto_ownership >= df.num_adults) & (df.auto_ownership > 0)),,coef_calib_autosufficienthhin_SHARED2,coef_calib_autosufficienthhin_SHARED3,coef_calib_autosufficienthhin_WALK,coef_calib_autosufficienthhin_BIKE,coef_calib_autosufficienthhin_WALK_TRANSIT,coef_calib_autosufficienthhin_PNR_TRANSIT,coef_calib_autosufficienthhin_KNR_TRANSIT,coef_calib_autosufficienthhin_TNC_TRANSIT,coef_calib_autosufficienthhin_TAXI,coef_calib_autosufficienthhin_TNC_SINGLE,coef_calib_autosufficienthhin_TNC_SHARED,coef_calib_autosufficienthhin_SCH_BUS,coef_calib_autosufficienthhin_EBIKE,coef_calib_autosufficienthhin_ESCOOTER +util_calib_autodeficienthh,abm2+ calibration constant,@(df.is_indiv & (df.auto_ownership < df.num_drivers) & (df.auto_ownership > 0)),,coef_calib_autodeficienthhind_SHARED2,coef_calib_autodeficienthhind_SHARED3,coef_calib_autodeficienthhind_WALK,coef_calib_autodeficienthhind_BIKE,coef_calib_autodeficienthhind_WALK_TRANSIT,coef_calib_autodeficienthhind_PNR_TRANSIT,coef_calib_autodeficienthhind_KNR_TRANSIT,coef_calib_autodeficienthhind_TNC_TRANSIT,coef_calib_autodeficienthhind_TAXI,coef_calib_autodeficienthhind_TNC_SINGLE,coef_calib_autodeficienthhind_TNC_SHARED,coef_calib_autodeficienthhind_SCH_BUS,coef_calib_autodeficienthhind_EBIKE,coef_calib_autodeficienthhind_ESCOOTER +util_calib_autosufficienth,abm2+ calibration constant,@(df.is_indiv & (df.auto_ownership >= df.num_drivers) & (df.auto_ownership > 0)),,coef_calib_autosufficienthhin_SHARED2,coef_calib_autosufficienthhin_SHARED3,coef_calib_autosufficienthhin_WALK,coef_calib_autosufficienthhin_BIKE,coef_calib_autosufficienthhin_WALK_TRANSIT,coef_calib_autosufficienthhin_PNR_TRANSIT,coef_calib_autosufficienthhin_KNR_TRANSIT,coef_calib_autosufficienthhin_TNC_TRANSIT,coef_calib_autosufficienthhin_TAXI,coef_calib_autosufficienthhin_TNC_SINGLE,coef_calib_autosufficienthhin_TNC_SHARED,coef_calib_autosufficienthhin_SCH_BUS,coef_calib_autosufficienthhin_EBIKE,coef_calib_autosufficienthhin_ESCOOTER util_calib_zeroautohhjoint,abm2+ calibration constant,@(df.is_joint & (df.auto_ownership == 0)),,,coef_calib_zeroautohhjointtou_SHARED3,coef_calib_zeroautohhjointtou_WALK,coef_calib_zeroautohhjointtou_BIKE,coef_calib_zeroautohhjointtou_WALK_TRANSIT,coef_calib_zeroautohhjointtou_PNR_TRANSIT,coef_calib_zeroautohhjointtou_KNR_TRANSIT,coef_calib_zeroautohhjointtou_TNC_TRANSIT,coef_calib_zeroautohhjointtou_TAXI,coef_calib_zeroautohhjointtou_TNC_SINGLE,coef_calib_zeroautohhjointtou_TNC_SHARED,,coef_calib_zeroautohhjointtou_EBIKE,coef_calib_zeroautohhjointtou_ESCOOTER -util_calib_autodeficienthh,abm2+ calibration constant,@(df.is_joint & (df.auto_ownership < df.num_adults) & (df.auto_ownership > 0)),,,coef_calib_autodeficienthhjoi_SHARED3,coef_calib_autodeficienthhjoi_WALK,coef_calib_autodeficienthhjoi_BIKE,coef_calib_autodeficienthhjoi_WALK_TRANSIT,coef_calib_autodeficienthhjoi_PNR_TRANSIT,coef_calib_autodeficienthhjoi_KNR_TRANSIT,coef_calib_autodeficienthhjoi_TNC_TRANSIT,coef_calib_autodeficienthhjoi_TAXI,coef_calib_autodeficienthhjoi_TNC_SINGLE,coef_calib_autodeficienthhjoi_TNC_SHARED,,coef_calib_autodeficienthhjoi_EBIKE,coef_calib_autodeficienthhjoi_ESCOOTER -util_calib_autosufficienth,abm2+ calibration constant,@(df.is_joint & (df.auto_ownership >= df.num_adults) & (df.auto_ownership > 0)),,,coef_calib_autosufficienthhjo_SHARED3,coef_calib_autosufficienthhjo_WALK,coef_calib_autosufficienthhjo_BIKE,coef_calib_autosufficienthhjo_WALK_TRANSIT,coef_calib_autosufficienthhjo_PNR_TRANSIT,coef_calib_autosufficienthhjo_KNR_TRANSIT,coef_calib_autosufficienthhjo_TNC_TRANSIT,coef_calib_autosufficienthhjo_TAXI,coef_calib_autosufficienthhjo_TNC_SINGLE,coef_calib_autosufficienthhjo_TNC_SHARED,,coef_calib_autosufficienthhjo_EBIKE,coef_calib_autosufficienthhjo_ESCOOTER +util_calib_autodeficienthh,abm2+ calibration constant,@(df.is_joint & (df.auto_ownership < df.num_drivers) & (df.auto_ownership > 0)),,,coef_calib_autodeficienthhjoi_SHARED3,coef_calib_autodeficienthhjoi_WALK,coef_calib_autodeficienthhjoi_BIKE,coef_calib_autodeficienthhjoi_WALK_TRANSIT,coef_calib_autodeficienthhjoi_PNR_TRANSIT,coef_calib_autodeficienthhjoi_KNR_TRANSIT,coef_calib_autodeficienthhjoi_TNC_TRANSIT,coef_calib_autodeficienthhjoi_TAXI,coef_calib_autodeficienthhjoi_TNC_SINGLE,coef_calib_autodeficienthhjoi_TNC_SHARED,,coef_calib_autodeficienthhjoi_EBIKE,coef_calib_autodeficienthhjoi_ESCOOTER +util_calib_autosufficienth,abm2+ calibration constant,@(df.is_joint & (df.auto_ownership >= df.num_drivers) & (df.auto_ownership > 0)),,,coef_calib_autosufficienthhjo_SHARED3,coef_calib_autosufficienthhjo_WALK,coef_calib_autosufficienthhjo_BIKE,coef_calib_autosufficienthhjo_WALK_TRANSIT,coef_calib_autosufficienthhjo_PNR_TRANSIT,coef_calib_autosufficienthhjo_KNR_TRANSIT,coef_calib_autosufficienthhjo_TNC_TRANSIT,coef_calib_autosufficienthhjo_TAXI,coef_calib_autosufficienthhjo_TNC_SINGLE,coef_calib_autosufficienthhjo_TNC_SHARED,,coef_calib_autosufficienthhjo_EBIKE,coef_calib_autosufficienthhjo_ESCOOTER util_calib_escorttour,abm2+ calibration constant,tour_type == 'escort',,,,coef_calib_escorttour_WALK,coef_calib_escorttour_BIKE,coef_calib_escorttour_WALK_TRANSIT,coef_calib_escorttour_PNR_TRANSIT,coef_calib_escorttour_KNR_TRANSIT,coef_calib_escorttour_TNC_TRANSIT,,,,,, #, School Escorting eligibility-odd looking where/isnan is to allow this to work with numba fastmath,,,,,,,,,,,,,,,, util_one_or_more_school_escort,No SOV if on school escort tour,"@(np.where(np.isnan(df.get('num_escortees', 0)), 0 , df.get('num_escortees', 0)) >= 1)",-999,,,,,,,,,,,,,, diff --git a/resident/configs/tour_mode_choice.yaml b/resident/configs/tour_mode_choice.yaml index 326e9de..cc1d12d 100644 --- a/resident/configs/tour_mode_choice.yaml +++ b/resident/configs/tour_mode_choice.yaml @@ -78,6 +78,7 @@ LOGSUM_CHOOSER_COLUMNS: - age - SEX - auto_ownership + - num_drivers - num_adults - ptype - number_of_participants From 615f553b3b752fda3730f4063faed35b99a9c8cb Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 7 May 2026 18:21:28 -0400 Subject: [PATCH 37/46] Fix transit pass subsidy availability cond --- resident/configs/transit_pass_subsidy.csv | 8 ++++---- resident/configs/transit_pass_subsidy_preprocessor.csv | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resident/configs/transit_pass_subsidy.csv b/resident/configs/transit_pass_subsidy.csv index 3e3fdf2..f08ec0c 100644 --- a/resident/configs/transit_pass_subsidy.csv +++ b/resident/configs/transit_pass_subsidy.csv @@ -21,7 +21,7 @@ util_availability,Availability of transit pass,transit_subsidy_available==False, util_ft_ASC,ptype_ft calibration constant,@df.ptype == 1,0,coef_ft_asc util_pt_ASC,ptype_pt calibration constant,@df.ptype == 2,0,coef_pt_asc util_un_ASC,ptype_un calibration constant,@df.ptype == 3,0,coef_un_asc -util_transit_ivt_home_to_work_walk_peak,Walk-transit home to work peak availability,@df.transit_ivt_home_to_work_walk_peak,0,coef_transit_ivt_home_to_work_walk_peak -util_transit_ivt_home_to_work_drive_peak,Drive-transit home to work peak availability,@df.transit_ivt_home_to_work_drive_peak,0,coef_transit_ivt_home_to_work_drive_peak -util_transit_ivt_home_to_school_walk_peak,Walk-transit home to school peak availability,@df.transit_ivt_home_to_school_walk_peak,0,coef_transit_ivt_home_to_school_walk_peak -util_transit_ivt_home_to_school_drive_peak,Drive-transit home to school peak availability,@df.transit_ivt_home_to_school_drive_peak,0,coef_transit_ivt_home_to_school_drive_peak +util_transit_ivt_home_to_work_walk_peak,Walk-transit home to work peak availability,@df.transit_ivt_home_to_work_walk_peak.fillna(0),0,coef_transit_ivt_home_to_work_walk_peak +util_transit_ivt_home_to_work_drive_peak,Drive-transit home to work peak availability,@df.transit_ivt_home_to_work_drive_peak.fillna(0),0,coef_transit_ivt_home_to_work_drive_peak +util_transit_ivt_home_to_school_walk_peak,Walk-transit home to school peak availability,@df.transit_ivt_home_to_school_walk_peak.fillna(0),0,coef_transit_ivt_home_to_school_walk_peak +util_transit_ivt_home_to_school_drive_peak,Drive-transit home to school peak availability,@df.transit_ivt_home_to_school_drive_peak.fillna(0),0,coef_transit_ivt_home_to_school_drive_peak diff --git a/resident/configs/transit_pass_subsidy_preprocessor.csv b/resident/configs/transit_pass_subsidy_preprocessor.csv index 15f16ee..e14fe04 100644 --- a/resident/configs/transit_pass_subsidy_preprocessor.csv +++ b/resident/configs/transit_pass_subsidy_preprocessor.csv @@ -3,5 +3,5 @@ Description,Target,Expression ,transit_ivt_home_to_work_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" ,transit_ivt_home_to_school_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('WTW_TIV', 'AM'))" ,transit_ivt_home_to_school_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" -,transit_subsidy_available,(persons.workplace_zone_id > 0) | (persons.school_zone_id > 0) +,transit_subsidy_available,persons.is_worker ,trn_wk_access_hh,"np.where(persons.workplace_zone_id > 0, reindex(accessibility.trPkHH, persons.workplace_zone_id), 0)" \ No newline at end of file From 29354e4dcc064ea77f813c2a405c20d520c79d65 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 14 May 2026 12:25:59 -0400 Subject: [PATCH 38/46] Update escortee age limit --- resident/configs/school_escorting.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resident/configs/school_escorting.yaml b/resident/configs/school_escorting.yaml index b4524a9..b038dee 100644 --- a/resident/configs/school_escorting.yaml +++ b/resident/configs/school_escorting.yaml @@ -12,6 +12,8 @@ ALTS: school_escorting_alts.csv LOGIT_TYPE: MNL +ESCORTEE_AGE_CUTOFF: 19 + NUM_ESCORTEES: 3 NUM_CHAPERONES: 2 From 6371c812fd02241ca095ed0551c81e029b6fa8d3 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 20 May 2026 13:35:32 -0400 Subject: [PATCH 39/46] NMT scheduling fixes --- .vscode/launch.json | 19 +++++- resident/configs/annotate_households.csv | 3 +- .../non_mandatory_tour_scheduling.yaml | 1 + .../configs_estimation/annotate_persons.csv | 65 +++++++++++++++++++ resident/configs_estimation/estimation.yaml | 15 ++++- 5 files changed, 98 insertions(+), 5 deletions(-) create mode 100644 resident/configs_estimation/annotate_persons.csv diff --git a/.vscode/launch.json b/.vscode/launch.json index 0970afe..8638e4b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -18,7 +18,7 @@ ] }, { - "name": "Run Estimation Mode", + "name": "Metro Estimation Mode", "type": "debugpy", "request": "launch", "cwd": "${workspaceFolder}/resident", @@ -28,7 +28,22 @@ "-c", "configs_estimation", // check the settings.yaml file for run settings! "-c", "configs", "-d", "model_data/metro/data_full", - "-o", "outputs/estimation", + "-o", "outputs/estimation_metro", + ] + }, + { + "name": "SKATS Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_skats", + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/skats/data_full", + "-o", "outputs/estimation_skats", ] }, { diff --git a/resident/configs/annotate_households.csv b/resident/configs/annotate_households.csv index 164d110..819f387 100644 --- a/resident/configs/annotate_households.csv +++ b/resident/configs/annotate_households.csv @@ -31,4 +31,5 @@ home_is_rural,home_is_rural,"reindex(land_use.pseudomsa, households.home_zone_id ,num_hh_in_zone,"reindex(households.groupby('home_zone_id').size(), households.home_zone_id)" #,multiple_auto_hh_in_zone,"reindex_i(df.groupby('home_zone_id').multiple_auto_hh.sum(), df.index)" #,multiple_auto_hh_in_zone_share,multiple_auto_hh_in_zone/num_hh_in_zone -hh owns an ebike,ebike_owner,"rng.random_for_df(households)[:,0] < ebikeownership" \ No newline at end of file +hh owns an ebike,ebike_owner,"rng.random_for_df(households)[:,0] < ebikeownership" +Retired Adults Only Households,retired_adults_only_hh,(households.hhsize > 0) & (households.hhsize == num_retired_adults) diff --git a/resident/configs/non_mandatory_tour_scheduling.yaml b/resident/configs/non_mandatory_tour_scheduling.yaml index 1850c12..f18da06 100644 --- a/resident/configs/non_mandatory_tour_scheduling.yaml +++ b/resident/configs/non_mandatory_tour_scheduling.yaml @@ -30,6 +30,7 @@ SIMULATE_CHOOSER_COLUMNS: - num_non_escort_tours - num_add_shop_maint_tours - num_add_soc_discr_tours + - retired_adults_only_hh LOGSUM_SETTINGS: tour_mode_choice.yaml diff --git a/resident/configs_estimation/annotate_persons.csv b/resident/configs_estimation/annotate_persons.csv new file mode 100644 index 0000000..bd10665 --- /dev/null +++ b/resident/configs_estimation/annotate_persons.csv @@ -0,0 +1,65 @@ +Description,Target,Expression +#,, annotate persons table after import +age_16_to_19,age_16_to_19,"persons.age.between(16, 19)" +age_16_p,age_16_p,persons.age >= 16 +adult,adult,persons.age >= 18 +# FIXME --are these SEX categories correct?,, +male,male,persons.SEX == 1 +female,female,persons.SEX == 2 +employment status type,pemploy,"pd.Series(np.zeros(len(persons)), index=persons.index)" +,pemploy,"np.where(persons.age < 16, PEMPLOY_CHILD, PEMPLOY_PART)" +,pemploy,"np.where((persons.age >= 16) & ((persons.ESR == 3) | (persons.ESR == 6)), PEMPLOY_NOT, pemploy)" +,pemploy,"np.where((persons.age>=16) & (persons.ESR != 3) & (persons.ESR != 6) & (persons.WKHP >= 35) & (persons.WKW >= 1) & (persons.WKW <= 4), PEMPLOY_FULL, pemploy)" +student category,pstudent,"pd.Series(np.zeros(len(persons)), index=persons.index)" +,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" +,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.SCHG < 1) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" +,pstudent,"np.where((persons.SCHG < 1) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age <= 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age > 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where(pstudent == 0, 3, pstudent)" +person type,ptype,"pd.Series(PTYPE_NONWORK, index=persons.index)" +,ptype,"np.where(persons.age >= 65, PTYPE_RETIRED, ptype)" +,ptype,"np.where(pemploy == 2, PTYPE_PART, ptype)" +,ptype,"np.where(pemploy == 1, PTYPE_FULL, ptype)" +,ptype,"np.where((persons.age >= 5) & ((persons.age < 18) | ((persons.age == 18) & (pstudent == 1))), PTYPE_SCHOOL, ptype)" +,ptype,"np.where(persons.age < 5, PTYPE_PRESCHOOL, ptype)" +,ptype,"np.where(pstudent == 2, PTYPE_UNIVERSITY, ptype)" +# FIXME are these rules for preschoolers still wanted?,, +is_student,is_student,"np.isin(pstudent, [PSTUDENT_GRADE_OR_HIGH, PSTUDENT_UNIVERSITY])" +preschool age can go to preschool,is_student,"np.where(persons.age > GRADE_SCHOOL_MIN_AGE, is_student, True)" +is_preschool,_is_preschool,(pstudent == PSTUDENT_GRADE_OR_HIGH) & (persons.age <= GRADE_SCHOOL_MIN_AGE) +is_gradeschool,_is_gradeschool,(pstudent == PSTUDENT_GRADE_OR_HIGH) & (persons.age <= GRADE_SCHOOL_MAX_AGE) & (persons.age > GRADE_SCHOOL_MIN_AGE) +is_highschool,_is_highschool,(pstudent == PSTUDENT_GRADE_OR_HIGH) & (persons.age > GRADE_SCHOOL_MAX_AGE) +# is_university is actually hard coded in mandatory scheduling(!) so need it here,, +is_university,is_university,pstudent == PSTUDENT_UNIVERSITY +school_segment preschool,school_segment,"np.where(_is_preschool, SCHOOL_SEGMENT_PREK, SCHOOL_SEGMENT_NONE)" +school_segment gradeschool,school_segment,"np.where(_is_gradeschool, SCHOOL_SEGMENT_GRADE, school_segment)" +school_segment highschool,school_segment,"np.where(_is_highschool, SCHOOL_SEGMENT_HIGH, school_segment)" +school_segment university,school_segment,"np.where(is_university, SCHOOL_SEGMENT_UNIV, school_segment).astype(np.int8)" +#,, +is_worker,is_worker,"np.isin(pemploy, [PEMPLOY_FULL, PEMPLOY_PART])" +#extrnal model variable initialization treating everyone as internal initially,, +,is_internal_worker,is_worker +,is_external_worker,0 +#,, +home_zone_id,home_zone_id,"reindex(households.home_zone_id, persons.household_id)" +#,, +,_mean_work,distributed_time_factor_work_mean +,_stddev_work,distributed_time_factor_work_stddev +,_mean_nonwork,distributed_time_factor_nonwork_mean +,_stddev_nonwork,distributed_time_factor_nonwork_stddev +,_min_time_factor,distributed_time_factor_min +,_max_time_factor,distributed_time_factor_max +#,,"Below expression was previously done using np.clip, but was producing a NotImplemented error for mixed DataFrame and Series Inputs. Reimplemented using min & max" +travel time sensitivity factor for work travel,time_factor_work,1 +travel time sensitivity factor for non-work travel,time_factor_nonwork,1 +#,, +# FIXME need naics and SOC codes ,, +,_naics_code,"np.where(persons.naics2_original_code=='3M', 3000, np.where(persons.naics2_original_code=='4M', 4000, np.where(persons.naics2_original_code=='MIL',9000, persons.naics2_original_code))) if 'naics2_original_code' in persons.columns else 0" +,naics_code,_naics_code.astype('int') if all(_naics_code!=0) else 0 +#,, +# FIXME does filling with -1 make sense here? depends on what the missing values mean,, +occupation categories mapped to workplace segments,occupation,persons.OCCP.fillna(999).map(occupation_xwalk) diff --git a/resident/configs_estimation/estimation.yaml b/resident/configs_estimation/estimation.yaml index 621e231..b27f3b8 100644 --- a/resident/configs_estimation/estimation.yaml +++ b/resident/configs_estimation/estimation.yaml @@ -32,7 +32,12 @@ bundles: - external_non_mandatory_identification - external_non_mandatory_destination - non_mandatory_tour_destination - - non_mandatory_tour_scheduling + - non_mandatory_tour_scheduling_escort + - non_mandatory_tour_scheduling_shopping + - non_mandatory_tour_scheduling_eatout + - non_mandatory_tour_scheduling_othdiscr + - non_mandatory_tour_scheduling_othmaint + - non_mandatory_tour_scheduling_social - vehicle_allocation # - park_and_ride_lot_choice - tour_mode_choice @@ -95,7 +100,13 @@ estimation_table_types: external_non_mandatory_identification: simple_simulate non_mandatory_tour_destination: interaction_sample_simulate external_non_mandatory_destination: interaction_sample_simulate - non_mandatory_tour_scheduling: interaction_sample_simulate + # non_mandatory_tour_scheduling: interaction_sample_simulate + non_mandatory_tour_scheduling_escort: interaction_sample_simulate + non_mandatory_tour_scheduling_shopping: interaction_sample_simulate + non_mandatory_tour_scheduling_eatout: interaction_sample_simulate + non_mandatory_tour_scheduling_othdiscr: interaction_sample_simulate + non_mandatory_tour_scheduling_othmaint: interaction_sample_simulate + non_mandatory_tour_scheduling_social: interaction_sample_simulate vehicle_allocation: simple_simulate tour_mode_choice: simple_simulate atwork_subtour_frequency: simple_simulate From 01511ecd347eda89f0a3a72ef888745a56fd97bc Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 21 May 2026 13:38:38 -0400 Subject: [PATCH 40/46] Trip mode choice spec changes --- resident/configs/trip_mode_choice.csv | 10 ++--- .../configs_estimation/trip_mode_choice.csv | 40 +++++++++---------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/resident/configs/trip_mode_choice.csv b/resident/configs/trip_mode_choice.csv index ecb7545..0d33593 100644 --- a/resident/configs/trip_mode_choice.csv +++ b/resident/configs/trip_mode_choice.csv @@ -112,19 +112,19 @@ util_KNR_LOC_Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, #,BiketoTransit,,,,,,,,,,,,,,,, util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, -util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['WTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, -util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['WTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['WTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['WTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, -util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, diff --git a/resident/configs_estimation/trip_mode_choice.csv b/resident/configs_estimation/trip_mode_choice.csv index c426cb2..63d2cf2 100644 --- a/resident/configs_estimation/trip_mode_choice.csv +++ b/resident/configs_estimation/trip_mode_choice.csv @@ -87,44 +87,44 @@ util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,- # util_PNR_LOC - Female,PNR_LOC - Female,@(df.female),,,,,,,coef_female_tran,,,,,,,, # util_PNR_LOC - Destination Employment Density,PNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,coef_dEmpDen_dTran,,,,,,,, #,,,,,,,,,,,,,,,,, -util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,@(df.knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, -util_KNR_LOC_In_vehicle_time_out,KNR_LOC - In-vehicle time,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, -util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, -util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, -util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,coef_xferdrive,,,,,,, -util_KNR_LOC_KNR_time,KNR_LOC - KNR time,@(odt_skims['KTW_ACC']) * df.time_factor * df.outbound,,,,,,,,coef_acctime,,,,,,, +util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,(knr_local_available == False)|(KNR_implemented_and_available==0),,,,,,,,-999,,,,,,, +util_KNR_LOC_In_vehicle_time,KNR_LOC - In-vehicle time,@(df.ktw_odt_ivt) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(df.ktw_odt_fwt) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(df.ktw_odt_xwt) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, +util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(df.ktw_odt_xfr + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,coef_xferdrive,,,,,,, +util_KNR_LOC_KNR_time,KNR_LOC - KNR time,@(df.ktw_odt_acc) * df.time_factor * df.outbound,,,,,,,,coef_acctime,,,,,,, util_KNR_LOC_Walk_egress_time_(at_attraction_end),KNR_LOC - Walk egress time (at attraction end),"@np.where(df.nev_local_egress_available_out, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out, df.microtransit_local_egress_time_out, df.dest_local_time)) * df.time_factor * df.outbound",,,,,,,,coef_acctime,,,,,,, util_KNR_LOC_wait_egress_time_(at_attraction_end),KNR_LOC - Egress mt/nev wait time (at attraction end),"@np.where(df.nev_local_egress_available_out, nevWaitTime, np.where(df.microtransit_local_egress_available_out, microtransitWaitTime, 0)) * df.time_factor * df.outbound",,,,,,,,coef_wait,,,,,,, -util_KNR_LOC_Walk_other_time,KNR_LOC - Walk other time,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,coef_xwalk,,,,,,, +util_KNR_LOC_Walk_other_time,KNR_LOC - Walk other time,@(df.ktw_odt_aux) * df.time_factor * df.outbound,,,,,,,,coef_xwalk,,,,,,, util_KNR_LOC_Fare,KNR_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * df.outbound",,,,,,,,coef_income,,,,,,, -util_KNR_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['KTW_ACC']/60) *driveSpeed )*100*df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, -util_KNRIN_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['WTK_EGR']/60) *driveSpeed)*100*~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, -util_KNRIN_LOC_In_vehicle_time_in,KNRIN_LOC - In-vehicle time,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,coef_ivt,,,,,,, -util_KNRIN_LOC_iwait_time,KNRIN_LOC - First iwait time,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_wait,,,,,,, -util_KNRIN_LOC_transfer_wait_time,KNRIN_LOC - transfer wait time,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwait,,,,,,, -util_KNRIN_LOC_number_of_transfers,KNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,coef_xferdrive,,,,,,, -util_KNRIN_LOC_KNRIN_time,KNRIN_LOC - KNR time,@odt_skims['WTK_EGR'] * df.time_factor * ~df.outbound,,,,,,,,coef_acctime,,,,,,, +util_KNR_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (df.ktw_odt_acc/60) *driveSpeed )*100*df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, +util_KNRIN_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (df.ktw_odt_egr/60) *driveSpeed)*100*~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, +util_KNRIN_LOC_In_vehicle_time,KNRIN_LOC - In-vehicle time,@(df.wtk_odt_tiv) * df.time_factor * ~df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNRIN_LOC_iwait_time,KNRIN_LOC - First iwait time,@(df.wtk_odt_fwt) * df.time_factor * ~df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNRIN_LOC_transfer_wait_time,KNRIN_LOC - transfer wait time,@(df.wtk_odt_xwt) * df.time_factor * ~df.outbound,,,,,,,,coef_xwait,,,,,,, +util_KNRIN_LOC_number_of_transfers,KNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(df.wtk_odt_xfr + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,coef_xferdrive,,,,,,, +util_KNRIN_LOC_KNRIN_time,KNRIN_LOC - KNR time,@(df.wtk_odt_egr) * df.time_factor * ~df.outbound,,,,,,,,coef_acctime,,,,,,, util_KNRIN_LOC_Walk_access_time,KNRIN_LOC - Walk access time,"@np.where(df.nev_local_access_available_in, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in, df.microtransit_local_access_time_in, df.origin_local_time)) * df.time_factor * ~df.outbound",,,,,,,,coef_acctime,,,,,,, util_KNRIN_LOC_wait_access_time,KNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,,coef_wait,,,,,,, -util_KNRIN_LOC_Walk_other_time,KNRIN_LOC - Walk other time,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwalk,,,,,,, +util_KNRIN_LOC_Walk_other_time,KNRIN_LOC - Walk other time,@(df.wtk_odt_aux) * df.time_factor * ~df.outbound,,,,,,,,coef_xwalk,,,,,,, util_KNRIN_LOC_Fare_and_operating_cost,KNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,,coef_income,,,,,,, util_KNR_LOC_Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, #,BiketoTransit,,,,,,,,,,,,,,,, util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, -util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['WTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, -util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['WTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['WTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['WTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, -util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, From 6bc3337901704598c2061297671f8d483c80671a Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 21 May 2026 15:47:44 -0400 Subject: [PATCH 41/46] More trip mode choice spec changes --- resident/configs/trip_mode_choice.csv | 10 +++++----- resident/configs_estimation/trip_mode_choice.csv | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/resident/configs/trip_mode_choice.csv b/resident/configs/trip_mode_choice.csv index 0d33593..7f94de1 100644 --- a/resident/configs/trip_mode_choice.csv +++ b/resident/configs/trip_mode_choice.csv @@ -113,19 +113,19 @@ util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Den #,BiketoTransit,,,,,,,,,,,,,,,, util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['WTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, -util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTW_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['WTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTW_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['WTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, -util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTW_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['WTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, -util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTW_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, -util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, util_BIKE_TRANSIT_Origin_Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, diff --git a/resident/configs_estimation/trip_mode_choice.csv b/resident/configs_estimation/trip_mode_choice.csv index 63d2cf2..ba48c97 100644 --- a/resident/configs_estimation/trip_mode_choice.csv +++ b/resident/configs_estimation/trip_mode_choice.csv @@ -113,19 +113,19 @@ util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Den #,BiketoTransit,,,,,,,,,,,,,,,, util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['WTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, -util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTW_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['WTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTW_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['WTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, -util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTW_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['WTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, -util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTW_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, -util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, util_BIKE_TRANSIT_Origin_Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, From 991fc99d7560a23182ec1066dea8a4b93b0f44ff Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Thu, 21 May 2026 15:48:10 -0400 Subject: [PATCH 42/46] Updated destination size terms --- .../configs/destination_choice_size_terms.csv | 4 +- .../destination_choice_size_terms.csv | 50 +++++++++---------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 5b70001..ec72040 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -1,4 +1,4 @@ -model_selector,segment,TOTHHS,TOTPOP,EMP_NRM,EMP_CON,EMP_MFG,EMP_WT,EMP_TWU,EMP_RET,EMP_IFRPBS,EMP_HCS,EMP_OSV,EMP_GOV,EMP_EDU,EMP_AER,EMP_AFS,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,COLLEGEENROLL,ACTIVE_ACRES,EXTERNAL +model_selector,segment,TOTHHS,TOTPOP,EMP_NRM,EMP_CON,EMP_MFG,EMP_WT,EMP_TWU,EMP_RET,EMP_IFRPBS,EMP_HCS,EMP_OSV,EMP_GOV,EMP_EDU,EMP_AER,EMP_AFS,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,COLLEGEENROLL,ACTIVE_ACRES,external_size_term workplace,mngt_busi_scic_arts,0,0,0.023150473,0.105478261,0.033921273,0.520588696,0.019155288,0.063194096,1,0.12997306,0.101893393,0.357056089,0.046020203,0.044384337,0.014582422,0,0,0,0,0,0 workplace,white_collar,0,0,0.011768937,0.051276887,0.174045033,1,0.206618229,0.914135674,0.494698223,0.170534494,0.142953744,0.337702324,0.048183584,0.052183296,0.031177613,0,0,0,0,0,0 workplace,blue_collar,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0 @@ -23,7 +23,7 @@ trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0 trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0 trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0 trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0 -trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0.05 +trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0 trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0 # not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,, diff --git a/resident/configs_estimation/destination_choice_size_terms.csv b/resident/configs_estimation/destination_choice_size_terms.csv index 329f5a4..3f3eba3 100644 --- a/resident/configs_estimation/destination_choice_size_terms.csv +++ b/resident/configs_estimation/destination_choice_size_terms.csv @@ -1,4 +1,4 @@ -model_selector,segment,TOTHHS,TOTPOP,EMP_NRM,EMP_CON,EMP_MFG,EMP_WT,EMP_TWU,EMP_RET,EMP_IFRPBS,EMP_HCS,EMP_OSV,EMP_GOV,EMP_EDU,EMP_AER,EMP_AFS,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,COLLEGEENROLL,ACTIVE_ACRES,EXTERNAL,ACRES +model_selector,segment,TOTHHS,TOTPOP,EMP_NRM,EMP_CON,EMP_MFG,EMP_WT,EMP_TWU,EMP_RET,EMP_IFRPBS,EMP_HCS,EMP_OSV,EMP_GOV,EMP_EDU,EMP_AER,EMP_AFS,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,COLLEGEENROLL,ACTIVE_ACRES,ACRES,external_size_term workplace,mngt_busi_scic_arts,0,0,0.023150473,0.105478261,0.033921273,0.520588696,0.019155288,0.063194096,1,0.12997306,0.101893393,0.357056089,0.046020203,0.044384337,0.014582422,0,0,0,0,0,0,0 workplace,white_collar,0,0,0.011768937,0.051276887,0.174045033,1,0.206618229,0.914135674,0.494698223,0.170534494,0.142953744,0.337702324,0.048183584,0.052183296,0.031177613,0,0,0,0,0,0,0 workplace,blue_collar,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0,0 @@ -10,30 +10,30 @@ school,preschool,0,0.1888,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0 school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 -non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0.001 -non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 -non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0,0.001 -non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0,0.001 -non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0,0.001 -non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0,0.001 -atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0,0.001 -trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001 -trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0.001 -trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0,0.001 -trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0,0.001 -trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 -trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 -trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0,0.001 -trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.001 -trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0.001 +non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0.001,0.001 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0.001,0.001 +non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0.001,0.001 +non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0.001,0.001 +non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0.001,0.001 +non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0.001,0.001 +atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0.001,0.001 +trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0 +trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0,0 +trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0,0 +trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0 +trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0 +trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0,0 +trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 # not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,,, #trip,gradeschool,0,,,,,,,,,,,,,,,,,,,,, #trip,highschool,0,,,,,,,,,,,,,,,,,,,,, -external_workplace,external_workplace,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_nonwork,external_nonwork,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_non_mandatory,escort,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_non_mandatory,shopping,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_non_mandatory,othmaint,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_non_mandatory,eatout,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_non_mandatory,social,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -external_non_mandatory,othdiscr,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_workplace,external_workplace,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_nonwork,external_nonwork,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_non_mandatory,escort,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_non_mandatory,shopping,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_non_mandatory,othmaint,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_non_mandatory,eatout,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_non_mandatory,social,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +external_non_mandatory,othdiscr,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 From 8b0bff5a594cd47ce61193c6767c03173e5cbb16 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 17 Jun 2026 10:15:38 -0400 Subject: [PATCH 43/46] Rebuild cropped dataset --- .../metro/data_cropped/autoSkims__AM.omx | Bin 262919 -> 262919 bytes .../metro/data_cropped/autoSkims__EA.omx | Bin 263612 -> 263612 bytes .../metro/data_cropped/autoSkims__EV.omx | Bin 262694 -> 262694 bytes .../metro/data_cropped/autoSkims__MD.omx | Bin 261884 -> 261884 bytes .../metro/data_cropped/autoSkims__PM.omx | Bin 262622 -> 262622 bytes .../metro/data_cropped/land_use.csv | 1306 ++++++++--------- .../metro/data_cropped/transitSkims__AM.omx | Bin 344141 -> 344141 bytes .../metro/data_cropped/transitSkims__EA.omx | Bin 364922 -> 364922 bytes .../metro/data_cropped/transitSkims__EV.omx | Bin 338501 -> 338501 bytes .../metro/data_cropped/transitSkims__MD.omx | Bin 332210 -> 332210 bytes .../metro/data_cropped/transitSkims__PM.omx | Bin 336354 -> 336354 bytes .../metro/data_cropped/walkSkim.omx | Bin 19999 -> 19999 bytes 12 files changed, 653 insertions(+), 653 deletions(-) diff --git a/resident/model_data/metro/data_cropped/autoSkims__AM.omx b/resident/model_data/metro/data_cropped/autoSkims__AM.omx index eb21379dfd6933754f6c4c0b1af91ce5cf86b316..f8c0625feb7a27a0feb3192a24503be923f98bbb 100644 GIT binary patch delta 384 zcmZo~6KHP}*sz6{rE--~*5m|cjm-~u&v1cxn>R?LK*a^N9oT$B?G6`96-d>Fg9kQO z7{Pb}XAf+au!HeHDtCCocpD@PHlGOL;eqG_shp7rl&c1r0#a#_3*&8&u-F_>afSyh zw^^Ze34{e!)iDXK3TU&&JU9=i$6+Nvuza6?!d4#HRgXJM=lH&}SVvS8Qm zcm^~Bq-!$BO%b1fyjqx>e*A^;fUe)p!O7^u2ayCS-7X=)2$Kc6fBOz)I2RZw+avT5 nTnV%7c~*?)cv$Ly25)z8X9T(g#B6^M#0bPp+aClmt8V}RI5MSh delta 384 zcmZo~6KHP}*sz6{MQLY$=Hvusjm-~u&v1cxn>R?LK*a^N9oT$B?G8kI@`i&4Hdh$I zcmZb*Y?iPC@{~a)fK=}Agz+{=7;HWf!ovfR1F4*m2$KV;w8(|=Hb_`(4yZT-QMp;6 zbqQ1tNL9xqxGJE{8uQ>hpdN>nKs_ozn>Pz=o5KxZZ8!*H1)PPkKHOm81<{9 delta 384 zcmdnfEwHCsV8a$(7Wtk1nUfQkH8wxsJ;Md&ZQdY}0u>k7c3|@jwL1{;$r}zH*j!-* z;{}{Ouvx+m#sjI`;R)kykTBSMB7}#BMFC_wNac(~pd6S7QfZM3<86?z*c?!C2BLDa zLhBN!9+0YzNpMv_n>FUac|bi5D`9#Bw$0&YQ3TqvdBZ^%E8r}Q_2C8!FIX1r`W?@J zW`NX!-4yW&#sk^*<1dT{bp3V?PDUR-xYF$s5{xiepxW&_ltEl2kU_ve*&d;f;7XWn h&$D7Y#{-t#?%>V{bO}gd`-31xAZFVBAc*VX*l`2oDd02U0mB5he#xX^{)#ZIH0o98hrv zqH?oB>k_CQkgASJa8*E?HRi#2Ks^pCfqJ??t`*oeha1A$a1h1{I16KaxWU2;mIb?h z$1|WAAYGF|Zi@H>%yM2c;oC^$;?GgG2 lu7uh4JS)a?JYc=s9o!j#E&-X^{ve1Eh?%xO2x4|y4*k7c3|@jwL4rax*$~>4j$NC zVFcp^oIS8v!Vbm*sodcS<86>I*nA>{hXdA{WNnAYrjNpyCWfCfq5XCHRi#2Ks^pCfqFo4n+3Mb;fAm_9E7m~&caw9Zm{qo%-Hb^ zXofz>e2|+WKEZe(+kX6o@qn)1&cVs(!v|NoT|$BpCJR)%eTOof3v}A{2z>-s!fbn< h72`P`u-@$s?u$FxY$|gog*B52SKNB1{gX(jphe+aO`FIiTVU4~sg` zzRe1)OCT(;%^j0~szBnCK{jj5gY$rT99F{g2yC0f4bi>fAdD4o7RLH;gN2tx17^mK zXFxN+Jdm3rKEZe(H~shv;{jd2or9CnhYzlFyMzQIOctni`wnF|7wEL@5&8(OgxU5y iE5>s?ESf+|w>!8q0$l=Pwm%4B1Y)M`4}zFw)&Ky?Z>g>T diff --git a/resident/model_data/metro/data_cropped/autoSkims__PM.omx b/resident/model_data/metro/data_cropped/autoSkims__PM.omx index 6a190c044d1c9d0f098351182c65a21ef13d9b5e..9654ee873599cbef30e1fcfa8267f8b87e86f49f 100644 GIT binary patch delta 384 zcmccDEO4(`V8a$(mgZGPS(6i(H8wxsJ;Md&ZQdY}0u>k7c3|@jwL4raEg)4J4j$NC zVFcp^oIS8v!Vbm*sodcS<86>I*nA>{hXdA{WSO1)C{hu{ogP3=f#M zS)p|agf$tYs$&vd70_mld2k+3kHbos9)WFhxFNbX90ao3fTnH^I16KaxWU2;76ZF} z$1|WAAQh8AZi@H>k7c3|@jwL1{;$r}zH*j!-* z;{}{Ouvx+m#sjI`;R)kykTBSMB7}#BMGIs)Nac(~pd6S7QfZM3<86?z*c?!C2BLDa zLhBN!9+0YzNpMv_n>FUac|bi5D`9#Bw$0&Y(FWSHdBZ^%E8r}Q_2C8!FIX1r`W?@J zW`NX!-4yW&#sk^*<1dT{bp3V?PDUR-xYF$s5{xiepxW&_ltEk_kU_ve*&d;f;7XWn h&$D7Y#{-t#?%>V{bO}gd`-31xAZFVBAc*2mdUG(vZfd2F-uOaWai)efcFd+L@00~v&H5Y5<0vrQ=lpqY~G>v zhYN`tVT8i{VT;0@;fcgG*nA>{hX+Y-MIw^yg3S`SK<-qKMT#GpEjI^NoaTXW!OnOSa}9n@rG?MS+L@OLqP5{xQ{-Zg>iv;EjMf41lo&` zo$(AN3)XA#359#(FA~>aI|nCY2qViZsL>tUUvM!3T@5#E`wwwOB=rln&rk;Or^B4G z-9jJE2Zh1*LMuj~V-WHW+~M*d*KBVHM&&ES!}*|aXphKZ1Y)M`5n0TlEMRlC1NF_} zW|;xBa=Ty^oVl?T&ID>?;RP!IC5Z*wf6ikDx)G!S!k@Vc#GeW0TW*8%L3VC0Jje_T ze31Nh$8#W4!OVv@;mpRTa3;``K)Yb!wP5?ne;~79e1q*jIa$s~LHIzk&D#H~ux$UY I!s;gt0HA#ylmGw# delta 700 zcmX@xAbPezbi)>27PFoGnbQmNm?bAyGV^bKz-4fwC4*yBBPh$c1qgKQdcx4y-uM1Ca$g zBce42$_3k-F$ty^%;lH|u{fI}$U4`*RqpkB+(nm2*=A{5Vf z29pI_Wbp}wd*d$>*I+vbCu0aBi!Icqj_ohF7=f;~g4w+Nhd3ipJ%T?&8I^CL59foz zV0)nzBhWDj^$*eaAyR%Y66J)APCNEh=VcPfgS^5rtJz@%r({!g$tH4!}K_81TiOqweNv58%{6- zJqQv7Mag!JYs^5$!MP_MqHr_b!nqqHEVnQG!3=cUB#?;(tSmso!At=`ICFyxoC%C6 opgkZ3V0(U;vH+OCkrTw@K9U9glHrqE#{ocUl6oY`=K z8R$V%kh4Lq(YVG8bR3*};vot*<1L)KLBewT!XL~)w}BLIFJNT>+5=_^2!fbkpKp+X qGl4M$von%F|Fy0^82=vSL8OkVJ3w;oG4af?h z-?kT6F#oTh6!BppFX%O$f!B9P`EbBK-_f@cUo>Q-3ZbP=7JPI*$0;eaa&HI va8<6sxgbBrJY)v?5w7>lJ0w|y?SFnUpOFFwBrrhC+L=UIwlj&cI*S4T-Z&Pc delta 643 zcmX?lMdauekqujTS-f`kXHHIF*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqM##J$ zwm_aY$OMqw3{MzugM`866Cpf22)T+xm>fu@L@tcCLBe8lK*bq|%FPO`OOW(rOaiL% zftk)R56YXaki}@Z*>UA*9AtVXT0&FxH0~EW8LqW;_EL;tMm<;uA9O z#$Ol@==|**oQxriECE2J+Y`7Lzwp3yZT}(82vZ33%k~+{C|nDDI2Y)*?FCkhK+l0} z-0tAc2y~Pmi1{E0&TNQ-G24Ou+OCkr6z~PC2o$8-MdF!(c7gPOxm&VOxFKaAu0Kfj z!wt*ry^YMkFadKxdjIsnWkK9IvrxD;%i!D%5|-ObH=^i$vJWl`(%W(h#03Qg*cmF< r;9QU&V;(XC{Ro#m^A1VYVEdn+%x9z^vKu7K+L=UIwlj&cI*S4Tvric5 diff --git a/resident/model_data/metro/data_cropped/transitSkims__MD.omx b/resident/model_data/metro/data_cropped/transitSkims__MD.omx index 3ee3ef829b22e66df7e63dee1073eff6d7bc77dd..c53e9e2c463cb32acb036f825f457cf4dbaa210a 100644 GIT binary patch delta 706 zcmdnASY*>;kqujTS!S&=%9{SMhFNlQB{To#2fSyvSZ0HSF3xAR-275Pn-{_bs#vgj zhuR;gESMW%gu?w{i^84ZiNrP7d?JL02g#_4M4;>(sND-TOXR}1Kzl7V2UMKlfyjcL z5!spz<$~?am;_S{=5ow~alv{WR>JgxWjAbt$%457hk)FKAOEp$y{BgN4I(3w<~rZR*XOwA><#p!{tHNZ*K@j~&x7m&8wHFXpsAps+@AP?`HvKs*`CPE LvOSTRHINSgaHu(~ delta 706 zcmdnASY*>;kqujTS!{RqXHNfE!z?+ul9_+=1Ku-S5TT3nnJqWJl+Z?~Sg?7A+8?Ma zP{V@F5k^3+9aR5<%|C2WxHCMFxCWa~gz)enDXvIFl3lP_A{WL5+H0{npyCWvG1wWA zt=T**_Hc_bCIJ;AxE%9fT(Dk;l|a1+*$vxZvS2p{9D;EV-eF$2`QzE&P@}+lHEsg+ zI>0QNzS5UjVe^h>ceoH@n=L*84S*}zeB&sqX!`?qkUWCl5RA%Kh==n*`r9M27`I1cF|B=s zqzC9L6f-;{L3}5;9WPVhe6Sl73z&g!0LgC$2H_lT2y;;YBj5axKU# ySa>YhF1Ztxzw-#354P*$d5~Qo_1l5*1GEdwOnkxoM+(erPh@7z;c@vT9-grAXU?K z?=mZF?wE83Nh8NRsK)6ES&WvO9ao-)>J->EhnvL>X#VC62Vty$voO|&8!WtFS+MOh zo&gO3sRi>aJ|XjN{Dtv=e%Q{z$r!@O;ssQ?J%Nky3lEDsNLRqwh1-9MGydj+aDh(U zK0}!is1Ga);#%m#xj+wYFR)?+`Vb_$-NBs^=qNDrK@gnT5C>zn1O2sKA&V*S9g7Fl zh1*3VnSqAGxm#0ExS<7b?uQ$e+xx1Sfnfqy{I>%x3v$@pDIl&V%w*dIaP9^P%k5>W zL3-h`Pj|p&L3&${pm0?$z_}nl#@=QI`Vp@8> Date: Wed, 17 Jun 2026 10:17:33 -0400 Subject: [PATCH 44/46] Rebuild SKATS cropped data --- .../skats/data_cropped/autoSkims__AM.omx | Bin 259994 -> 259994 bytes .../skats/data_cropped/autoSkims__EA.omx | Bin 259148 -> 259148 bytes .../skats/data_cropped/autoSkims__EV.omx | Bin 259598 -> 259598 bytes .../skats/data_cropped/autoSkims__MD.omx | Bin 259967 -> 259967 bytes .../skats/data_cropped/autoSkims__PM.omx | Bin 260516 -> 260516 bytes .../model_data/skats/data_cropped/fares.omx | Bin 21432 -> 21432 bytes .../skats/data_cropped/land_use.csv | 850 +++++++++--------- .../skats/data_cropped/transitSkims__AM.omx | Bin 88313 -> 88313 bytes .../skats/data_cropped/transitSkims__EA.omx | Bin 87041 -> 87041 bytes .../skats/data_cropped/transitSkims__EV.omx | Bin 87125 -> 87125 bytes .../skats/data_cropped/transitSkims__MD.omx | Bin 87459 -> 87459 bytes .../skats/data_cropped/transitSkims__PM.omx | Bin 90984 -> 90984 bytes .../skats/data_cropped/walkSkim.omx | Bin 18611 -> 18611 bytes 13 files changed, 425 insertions(+), 425 deletions(-) diff --git a/resident/model_data/skats/data_cropped/autoSkims__AM.omx b/resident/model_data/skats/data_cropped/autoSkims__AM.omx index b579d27122eef551e59e598c12738bd84169e790..2542f3afc0a81c74dd1afdb8dd1ca41bee5f6cfe 100644 GIT binary patch delta 384 zcmbRBo`2SR{ta7rSt8dMWlc_C*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_W61#%zAW{r7p9#D_NN}wK)+-8AobGRX_4F_SYfU_{xhZ`)s2s3s(gP8$x zQ^Y424`kbqzc3!q_1if(8GZO58i7i;OGq%nWPxh8?@)$wflk{Vp^xB7m~GFqVmt?N Z+;#_dMyN~L9|SQ1G1K-3LCm|B000BJqi_HK delta 384 zcmbRBo`2SR{ta7rSpsA}W=>9E*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E2?VTMwl#6?e-nYa4yi;?GgG2u7uh4JS)a?JYc=s Z9o!j#E&-X^{ve1Eh?%xO2x8u~1ONgEr*i-R diff --git a/resident/model_data/skats/data_cropped/autoSkims__EA.omx b/resident/model_data/skats/data_cropped/autoSkims__EA.omx index 2e583fa84f4ae842c3ac76130df327937c5aa0d3..daba1279b2f3ca87cc60a7cbfcca91c11239a5a9 100644 GIT binary patch delta 384 zcmX@}g8$45{ta7rSt8dMWlc_C*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E;{jd2or9CnhY#-j?Gh49E*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E;{jd2or9CnhY#-j?Gh4k7c3|@jwL1{;$r}zH*j!-* z;{}{Ouvx+m#sjI`;R)kykTBSMB7}zrVme6Wj6|SZ49G5!N{d_=Z-a!z=75SbJYc!a z3av{ZEU>DMNpMv_n>FUac|bi5D`9#Bw$0&&=-zM;#tJwKV|}>6!V9q%k7c3|@jwL1{;$r}zH*j!-* z;{}{Ouvx+m#sjI`;R)kykTBSMB7}zrVme6Wj6|3mNTo$CjJH9;Vsk*n8Hmcw3av|^ zdO)f=Cc#w!ZPu6v=K=LNtc2+i*fxh7>h6OuR=`;p>%$Ees9!*?-|-A)2FOhjpI|(Y zZ9o3PctF>0=ip@Y;e$JWyMzQIOctni`wnF|7ijGE2z>-s!fbn<72`RGH?}*tGeTX` R{ve1Eh?%xO2x8V-3;^f>rriJl diff --git a/resident/model_data/skats/data_cropped/autoSkims__MD.omx b/resident/model_data/skats/data_cropped/autoSkims__MD.omx index 9205904b13586e943128d342e16cf541ecfc290b..e629f5455a3844c1b2c6240c9f7865bd9c49a84c 100644 GIT binary patch delta 384 zcmezWj{pBV{ta7rS)$e$Wlc_C*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E;{jd2or9CnhY#-j?Gh49E*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E;{jd2or9CnhY#-j?Gh4H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E;{jd2or9CnhY#-j?Gh49E*4X@j_Y4=9w|Rp^3RGNR+kwqD)b2pUCvP}-U~`2L zj2CeBz-9?M7!Ra!hbN4;LBe43i4Yzhi0L4eGZJBPAe9!mFy00Ui_HNQXCNv!E3__w z>H(?hm;_e^v{_>woCnn7uo9+6VA~vSsJjosSOI5YtPeL>pnd_le#bMI86Y=Be1h>n zw*B}E;{jd2or9CnhY#-j?Gh4o;#tmC|S>o0hWlc_C*4X@j_Y4=9w|Rp^3RHZ9gu!MHwH$7UDiH65Au_MS L7MZ8vIe`lR2+AR1 delta 89 zcmdn7oN>o;#tmC|S%PFfW=>9E*4X@j_Y4=9w|Rp^3RHZ9gu!MHwH$7UDiH65Au_MS L7MZ8vIe`lRD0m_+ diff --git a/resident/model_data/skats/data_cropped/land_use.csv b/resident/model_data/skats/data_cropped/land_use.csv index cc48cc2..51e69c4 100644 --- a/resident/model_data/skats/data_cropped/land_use.csv +++ b/resident/model_data/skats/data_cropped/land_use.csv @@ -1,425 +1,425 @@ -MAZ,NO,CODE,NAME,USEIMAGEFILE,CATNO,CATNAME,XCOORD,YCOORD,IMAGEHEIGHT,USEIMAGEHEIGHT,IMAGEANGLE,ACTIVE_ACRES,ADT2000,ADT2017,ADTMODEL,AFFGEOID,ALAND,AWATER,BLKGRP,BLOCK,BUILT_FORM,CITY,CITYNM,COLLEGEENROLL,COUNTY,COUNTYFP,CTNUM,DAYCAREFAC,DISTRICT06,DIST_9TO12,DIST_KTO8,EBIKEACCTIME,ECT_DIST,ELEM,EMP2000,EMPMODEL,EMPPER,EMP_ACC,EMP_AER,EMP_AFS,EMP_CON,EMP_EDU,EMP_FSD,EMP_GOV,EMP_HCS,EMP_HTMFG,EMP_IFRPBS,EMP_MFG,EMP_NHTMFG,EMP_NRM,EMP_OSV,EMP_RCS,EMP_RET,EMP_TOTAL,EMP_TWU,EMP_WT,ENROLLGRADE9to12,ENROLLGRADEKto8,ENROLL_912,ESCOOACCTIME,EXPPRK_DAY,EXPPRK_HR,EXPPRK_MNTH,EXTERNAL,EXT_GROWTH,EXT_NWRK_SIZE,EXT_WORK_SIZE,GA,GEOID,GEOID20,GEOIDFQ20,HHDEN,HHPER,HIGH,HIGH_DIST,INTHMI,INTPTLAT,INTPTLON,INT_GROWTH,MAXCONNECTORWEIGHT,MAZID,MIDDLE,MID_DIST,NEW_MZNUM,OBJECTID,OSPC_ACRES,PARKACRES,PARKAREA,PARKATTRACT,PARKCLASS,PARKDEVELOP,PNR_LOT_NAME,PNR_SPACES,POP2000,POPEMPDEN,POPHHDEN,POPMODEL,PRKCST_DAY,PRKCST_HR,PRKCST_MNTH,PRKSPACES,PUMA,RETDEN,RIVER,SCHDIST,SHAPE_AREA,SHAPE_LENG,SKATS,STATEFP,SUFFIX,TAZ,TAZABM,TERMINALTIME,TOTEMP23,TOTEMPHH,TOTGQHHS,TOTHHS,TOTNGQHHS,TOTNUMZONES,TOTPOP,TRACT,TRACTCE,TRACT_NUM,TYPENO,UGB,UGBID,WLKTIME_BRT,WLKTIME_BUS,WLKTIME_CR,WLKTIME_LRT,ACRES,walk_dist_local_bus,walk_dist_premium_transit,empden,retempden,duden,popden,popempdenpermi,totint,exp_hourly,exp_daily,exp_monthly -1.0,1,External,,0,25,PedestrianZones,2290467.3765966906,141747.0272470255,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,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.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,8000100000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,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,80001.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,External,,0,25,PedestrianZones,2289462.4462140086,144009.17643667606,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,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.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,8000200000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,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,80002.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,3,External,,0,25,PedestrianZones,2289194.3365153484,148302.7583370771,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,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.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,8000300000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,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,80003.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,4,External,,0,25,PedestrianZones,2291271.581903452,154353.91016505338,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,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.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,8000400000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,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.0,80004.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5,External,,0,25,PedestrianZones,2296989.0478226007,159609.11288222895,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,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.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,8000500000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,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,80005.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7109.0,7109,,Block 2019,0,25,PedestrianZones,2299385.715266662,144483.72811863164,10.0,0,0,0.0,0.0,0.0,0.0,,11870.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2019.0,410470002002019.0,1000000US410470002002019,0.0,0.99,80103.0,0.0,85.0,44.9384939,-123.0423034,0.0,1.0,8006202019,80068.0,0.0,0.0,485.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,127738.6,1588.05,1.0,,,62.0,80062.0,2.0,1.0,161.0,0.0,160.0,0.0,0.0,262.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9324720956639445,0.0,999999.0,33.166,2.023,2.657,4.306,23982.317,85.0,0.0,0.0,0.0 -7144.0,7144,,Block 2008,0,25,PedestrianZones,2299391.5037302966,145237.76726098225,10.0,0,0,0.03,0.0,0.0,0.0,,0.0,15397.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2008.0,410470002002008.0,1000000US410470002002008,0.0,0.0,80103.0,0.0,108.0,44.945278,-123.0425307,0.0,1.0,8006102008,80068.0,0.0,0.0,540.0,0.0,0.03,0.0,3.0,URBAN PARK,DEVELOPED,,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,165698.28,1638.79,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.803905688144883,0.449,999999.0,9.053,0.694,0.525,0.81,6312.313,108.0,0.0,0.0,0.0 -7145.0,7145,,Block 2006,0,25,PedestrianZones,2299568.942699481,145362.53185896427,10.0,0,0,1.03,0.0,0.0,0.0,,24345.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2006.0,410470002002006.0,1000000US410470002002006,0.0,0.0,80103.0,0.0,112.0,44.9464505,-123.040333,0.0,3.0,8006102006,80068.0,0.0,0.0,541.0,0.0,1.03,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,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,262003.23,2497.16,1.0,,,61.0,80061.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.01476113271166,0.304,999999.0,10.18,1.809,0.331,0.501,6835.545,112.0,0.0,0.0,0.0 -7146.0,7146,,Block 2009,0,25,PedestrianZones,2299461.6110118404,145211.64744933636,10.0,0,0,0.67,0.0,0.0,0.0,,3308.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2009.0,410470002002009.0,1000000US410470002002009,0.0,0.0,80103.0,0.0,108.0,44.9450629,-123.0416323,0.0,1.0,8006102009,80068.0,0.0,0.0,542.0,0.0,0.67,0.0,3.0,URBAN PARK,DEVELOPED,,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,35599.94,1003.56,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8172614194023823,0.449,999999.0,9.053,0.694,0.525,0.81,6312.313,108.0,0.0,0.0,0.0 -7147.0,7147,,Block 2010,0,25,PedestrianZones,2299518.87813614,145188.27652351192,10.0,0,0,1.68,0.0,0.0,0.0,,12415.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2010.0,410470002002010.0,1000000US410470002002010,0.0,0.0,80103.0,0.0,109.0,44.9448689,-123.0408977,0.0,3.0,8006102010,80068.0,0.0,0.0,543.0,0.0,1.68,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,133611.8,1479.08,1.0,,,61.0,80061.0,2.0,16.0,16.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0673022034333437,0.488,999999.0,7.894,0.679,0.129,0.184,5169.909,109.0,0.0,0.0,0.0 -7148.0,7148,,Block 2022,0,25,PedestrianZones,2299640.8064625594,145140.207666604,10.0,0,0,0.0,0.0,0.0,0.0,,17555.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,40,0,0,8,0,0,0,0,0,0,75,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2022.0,410470002002022.0,1000000US410470002002022,0.0,0.0,80103.0,0.0,111.0,44.944471,-123.0393342,0.0,3.0,8006302022,80068.0,0.0,0.0,544.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,13.0,0.0,0.0,0.0,1.0,188937.23,1739.21,1.0,,,63.0,80063.0,2.0,53.0,53.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.337398066695442,0.202,999999.0,26.644,2.92,1.952,3.187,19092.218,111.0,0.2026584425258986,3.4537318680723645,0.9134122081265896 -7149.0,7149,,Block 2040,0,25,PedestrianZones,2299497.952713111,144773.33469000095,10.0,0,0,0.0,0.0,0.0,0.0,,17194.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,14,10,12,0,0,13,0,167,28,0,0,14,0,28,436,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2040.0,410470002002040.0,1000000US410470002002040,0.0,0.07,80103.0,0.0,105.0,44.9411306,-123.0409974,0.0,3.0,8006302040,80068.0,0.0,0.0,545.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.389999999999999,0.5799999999999998,0.0,1.5,18.0,0.0,70.0,0.0,0.0,0.0,1.0,185034.78,1720.88,1.0,,,63.0,80063.0,2.0,244.0,263.0,0.0,19.0,0.0,0.0,33.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.247810207598636,0.179,999999.0,33.614,2.987,1.565,2.52,23126.257,105.0,0.2024961487073235,3.4574209299045062,0.9141855739673226 -7150.0,7150,,Block 2048,0,25,PedestrianZones,2299455.328590412,144660.86862536933,10.0,0,0,0.0,0.0,0.0,0.0,,14293.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,4,5,1,0,0,0,5,0,27,0,0,0,1,0,7,61,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2048.0,410470002002048.0,1000000US410470002002048,0.0,0.02,80103.0,0.0,94.0,44.940107,-123.0414924,0.0,3.0,8006302048,80068.0,0.0,0.0,546.0,0.0,0.0,0.0,0.0,,,,0,0.0,32.33,0.67,0.0,1.5,18.0,0.0,27.0,0.0,0.0,0.0,1.0,153818.81,1540.31,1.0,,,63.0,80063.0,2.0,194.0,198.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5311907613230966,0.179,999999.0,33.614,2.987,1.565,2.52,23126.257,94.0,0.2023899667032701,3.45276666464526,0.9132944935680012 -7151.0,7151,,Block 2046,0,25,PedestrianZones,2299622.3317258446,144724.80078062095,10.0,0,0,0.0,0.0,0.0,0.0,,18078.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,84,29,0,0,0,4,0,60,12,0,0,8,0,56,246,0,54,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2046.0,410470002002046.0,1000000US410470002002046,0.0,0.1,80103.0,0.0,106.0,44.9407293,-123.0394028,0.0,3.0,8006602046,80068.0,0.0,0.0,547.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.11,0.56,0.0,1.5,18.0,0.0,107.0,0.0,0.0,0.0,1.0,194551.15,1764.79,1.0,,,66.0,80066.0,2.0,230.0,255.0,0.0,25.0,0.0,0.0,45.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.46627597876602,0.178,999999.0,34.851,2.507,1.527,2.376,23825.164,106.0,0.2030723058945856,3.4554017844741427,0.914640791118616 -7152.0,7152,,Block 1008,0,25,PedestrianZones,2299919.1315709865,145878.78278914324,10.0,0,0,0.0,0.0,0.0,0.0,,24230.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,17,0,0,0,0,32,0,0,0,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1008.0,410470002001008.0,1000000US410470002001008,0.0,0.0,80103.0,0.0,121.0,44.951193,-123.0361028,0.0,3.0,8008501008,80068.0,0.0,0.0,548.0,0.22,0.22,0.0,1.0,NATURAL AREA,UNDEVELOPED,,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,260755.62,2250.88,1.0,,,85.0,80085.0,2.0,73.0,73.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.986120156888335,0.185,999999.0,9.759,0.516,2.389,5.16,9548.602,121.0,0.0,0.0,0.0 -7153.0,7153,,Block 1007,0,25,PedestrianZones,2299862.689346799,145724.40127597863,10.0,0,0,0.0,0.0,0.0,0.0,,17711.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1007.0,410470002001007.0,1000000US410470002001007,0.0,0.0,80103.0,0.0,119.0,44.9497885,-123.0367564,0.0,3.0,8008501007,80068.0,0.0,0.0,549.0,0.5899999999999999,0.5899999999999999,0.0,1.0,NATURAL AREA,UNDEVELOPED,,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,190601.74,1794.21,1.0,,,85.0,80085.0,2.0,23.0,23.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.37560991115982,0.356,999999.0,11.298,0.609,1.586,3.289,9335.949,119.0,0.0,0.0,0.0 -7154.0,7154,,Block 1025,0,25,PedestrianZones,2299802.8007668965,145553.88576614243,10.0,0,0,0.0,0.0,0.0,0.0,,32402.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,29,0,0,2,16,0,5,0,0,0,0,0,16,115,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1025.0,410470002001025.0,1000000US410470002001025,0.0,0.02,80103.0,0.0,118.0,44.9482378,-123.0374471,0.0,3.0,8008501025,80068.0,0.0,0.0,550.0,0.0,0.0,0.0,0.0,,,,0,0.0,23.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,348704.17,2443.48,1.0,,,85.0,80085.0,2.0,94.0,96.0,0.0,2.0,0.0,0.0,4.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.005139181779432,0.244,999999.0,13.793,1.972,1.347,2.653,10525.47,118.0,0.0,0.0,0.0 -7155.0,7155,,Block 2003,0,25,PedestrianZones,2299718.9617292583,145393.91080623047,10.0,0,0,0.0,0.0,0.0,0.0,,2222.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2003.0,410470002002003.0,1000000US410470002002003,0.0,0.0,80103.0,0.0,115.0,44.9468545,-123.0377033,0.0,1.0,8006102003,80068.0,0.0,0.0,551.0,0.0,0.0,0.0,0.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,23906.52,1402.07,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.5488177037128406,0.248,999999.0,14.5,2.095,0.84,1.485,10230.914,115.0,0.0,0.0,0.0 -7156.0,7156,,Block 2002,0,25,PedestrianZones,2299864.8714675168,145334.06897960452,10.0,0,0,0.0,0.0,0.0,0.0,,18467.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2002.0,410470002002002.0,1000000US410470002002002,0.0,0.67,80103.0,0.0,123.0,44.9462781,-123.0365734,0.0,1.0,8006402002,80068.0,0.0,0.0,552.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.38,0.75,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,198732.94,1771.69,1.0,,,64.0,80064.0,2.0,6.0,18.0,0.0,12.0,0.0,0.0,16.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.562276578540441,0.127,999999.0,32.894,2.31,1.996,3.666,23398.667,123.0,0.0,0.0,0.0 -7157.0,7157,,Block 2012,0,25,PedestrianZones,2299618.9441942195,145292.0644254044,10.0,0,0,0.0,0.0,0.0,0.0,,1991.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2012.0,410470002002012.0,1000000US410470002002012,0.0,0.0,80103.0,0.0,109.0,44.9458308,-123.0396716,0.0,1.0,8006102012,80068.0,0.0,0.0,553.0,0.0,0.0,0.0,0.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,21417.82,959.34,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.4916850824365845,0.296,999999.0,12.599,2.016,0.741,1.184,8820.611,109.0,0.0,0.0,0.0 -7158.0,7158,,Block 2037,0,25,PedestrianZones,2299591.707141713,145018.90962549316,10.0,0,0,0.0,0.0,0.0,0.0,,16481.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2037.0,410470002002037.0,1000000US410470002002037,0.0,0.17,80103.0,0.0,111.0,44.9433661,-123.0399078,0.0,3.0,8006302037,80068.0,0.0,0.0,554.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.33,0.67,0.0,1.5,18.0,0.0,30.0,0.0,0.0,0.0,1.0,177368.42,1722.29,1.0,,,63.0,80063.0,2.0,20.0,24.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.071814944076562,0.277,999999.0,27.73,2.672,1.523,2.493,19342.768,111.0,0.2026529714316348,3.456945071438798,0.914092593738112 -7159.0,7159,,Block 1024,0,25,PedestrianZones,2299989.280144991,145818.96523332296,10.0,0,0,0.0,0.0,0.0,0.0,,6279.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,15,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1024.0,410470002001024.0,1000000US410470002001024,0.0,0.0,80103.0,0.0,124.0,44.9506748,-123.0351905,0.0,3.0,8008501024,80068.0,0.0,0.0,555.0,0.0,0.0,0.0,0.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,67575.51,1208.27,1.0,,,85.0,80085.0,2.0,12.0,12.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5513189456921126,0.174,999999.0,10.269,0.579,2.721,5.958,10385.253,124.0,0.0,0.0,0.0 -7160.0,7160,,Block 1013,0,25,PedestrianZones,2300124.3209018977,145863.51024030944,10.0,0,0,0.0,0.0,0.0,0.0,,10025.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,28,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1013.0,410470002001013.0,1000000US410470002001013,0.0,0.31,80103.0,0.0,132.0,44.9511136,-123.0334976,0.0,3.0,8008501013,80068.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.96,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107887.64,1314.94,1.0,,,85.0,80085.0,2.0,25.0,36.0,0.0,11.0,0.0,0.0,26.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4767571928248504,0.123,999999.0,9.321,0.51,2.856,5.988,9797.9,132.0,0.0,0.0,0.0 -7161.0,7161,,Block 2001,0,25,PedestrianZones,2299991.8716054694,145284.98025122483,10.0,0,0,0.0,0.0,0.0,0.0,,18039.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,17,0,0,0,0,0,0,109,5,0,0,5,0,0,150,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2001.0,410470002002001.0,1000000US410470002002001,0.0,0.0,80103.0,0.0,131.0,44.9458724,-123.0349453,0.0,3.0,8006402001,80068.0,0.0,0.0,557.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,1.0,194134.46,1762.33,1.0,,,64.0,80064.0,2.0,91.0,91.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.456710073233624,0.036,999999.0,33.106,2.191,2.112,4.042,23775.147,131.0,0.0,0.0,0.0 -7219.0,7219,,Block 5007,0,25,PedestrianZones,2301785.8743919795,143932.3109122941,10.0,0,0,0.0,0.0,0.0,0.0,,20298.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5007.0,410470009005007.0,1000000US410470009005007,0.0,0.52,80103.0,0.0,121.0,44.9342094,-123.0116897,0.0,2.0,8010905007,80082.0,0.0,0.0,628.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.33,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,218439.35,2204.47,1.0,,,109.0,80109.0,1.0,26.0,54.0,0.0,28.0,0.0,0.0,78.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.014672981424606,0.245,999999.0,9.85,0.072,3.548,8.414,11688.999,121.0,0.0,0.0,0.0 -7282.0,7282,,Block 3016,0,25,PedestrianZones,2301383.147000427,144903.8130109758,10.0,0,0,0.0,0.0,0.0,0.0,,12942.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3016.0,410470006003016.0,1000000US410470006003016,0.0,1.0,80103.0,0.0,144.0,44.9428353,-123.017173,0.0,1.0,8010403016,80082.0,0.0,0.0,820.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139276.72,1498.24,1.0,,,104.0,80104.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1973506112709766,0.068,999999.0,1.875,0.11,4.789,9.981,7587.841,144.0,0.0,0.0,0.0 -7283.0,7283,,Block 6017,0,25,PedestrianZones,2301504.264197107,144364.6937985502,10.0,0,0,0.0,0.0,0.0,0.0,,12203.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6017.0,410470009006017.0,1000000US410470009006017,0.0,1.0,80103.0,0.0,147.0,44.9380199,-123.0154263,0.0,1.0,8010806017,80082.0,0.0,0.0,821.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131330.49,1439.39,1.0,,,108.0,80108.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,8.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.014930484995926,0.182,999999.0,3.703,0.158,4.952,10.236,8921.397,147.0,0.0,0.0,0.0 -7284.0,7284,,Block 1023,0,25,PedestrianZones,2302105.999504932,145878.23104925695,10.0,0,0,0.0,0.0,0.0,0.0,,17134.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1023.0,410470006001023.0,1000000US410470006001023,0.0,0.9,80103.0,0.0,93.0,44.9518024,-123.0084011,0.0,1.0,8009901023,80377.0,0.0,0.0,822.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,184393.9,1744.01,1.0,,,99.0,80099.0,1.0,2.0,21.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.233097629456422,0.195,999999.0,3.432,0.136,2.785,6.434,6313.815,93.0,0.0,0.0,0.0 -7285.0,7285,,Block 2023,0,25,PedestrianZones,2301995.411808063,145028.51121816025,10.0,0,0,0.0,0.0,0.0,0.0,,13259.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2023.0,410470006002023.0,1000000US410470006002023,0.0,1.0,80103.0,0.0,144.0,44.9441283,-123.0094675,0.0,1.0,8010002023,80082.0,0.0,0.0,823.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142691.78,1515.03,1.0,,,100.0,80100.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,35.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2757496357834537,0.327,999999.0,1.879,0.022,3.474,7.965,6299.961,144.0,0.0,0.0,0.0 -7292.0,7292,,Block 2004,0,25,PedestrianZones,2301584.531970104,145414.6573671209,10.0,0,0,0.0,0.0,0.0,0.0,,30836.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,3,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2004.0,410470006002004.0,1000000US410470006002004,0.0,0.78,80103.0,0.0,140.0,44.9474867,-123.0148238,0.0,1.0,8010202004,80082.0,0.0,0.0,839.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.11,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,331854.79,2626.85,1.0,,,102.0,80102.0,1.0,9.0,40.0,0.0,31.0,0.0,0.0,79.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.618331004634782,0.132,999999.0,2.038,0.141,4.276,9.46,7358.968,140.0,0.0,0.0,0.0 -7296.0,7296,,Block 4007,0,25,PedestrianZones,2300603.743394645,144025.49472311116,10.0,0,0,0.0,0.0,0.0,0.0,,53542.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,11,0,0,25,0,17,10,0,12,0,0,0,5,0,0,133,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4007.0,410470009004007.0,1000000US410470009004007,0.0,0.2,80103.0,0.0,157.0,44.934716,-123.0266963,0.0,3.0,8011004007,80068.0,0.0,0.0,851.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.77,0.44,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,576206.19,3016.26,1.0,,,110.0,80110.0,1.0,110.0,137.0,0.0,27.0,0.0,0.0,62.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,13.227862297007526,0.178,999999.0,26.072,0.531,3.815,7.306,21361.722,157.0,0.0,0.0,0.0 -7297.0,7297,,Block 6014,0,25,PedestrianZones,2300815.1143601183,144395.99325112897,10.0,0,0,0.0,0.0,0.0,0.0,,14818.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6014.0,410470009006014.0,1000000US410470009006014,0.0,0.7399999999999999,80103.0,0.0,144.0,44.938108,-123.0241663,0.0,1.0,8010606014,80068.0,0.0,0.0,852.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.19,0.52,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,1.0,159464.53,1600.14,1.0,,,106.0,80106.0,1.0,10.0,38.0,0.0,28.0,0.0,0.0,54.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.660798559610796,0.136,999999.0,16.453,0.082,4.365,8.286,15833.15,144.0,0.2041845953959518,3.343854546267793,0.8971990523681491 -7323.0,7323,,Block 2023,0,25,PedestrianZones,2299767.6629099958,145088.03959794235,10.0,0,0,0.0,0.0,0.0,0.0,,18433.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2023.0,410470002002023.0,1000000US410470002002023,0.0,0.0,80103.0,0.0,121.0,44.9440376,-123.0377068,0.0,3.0,8006502023,80068.0,0.0,0.0,912.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,184.0,0.0,0.0,0.0,1.0,198374.13,1782.26,1.0,,,65.0,80065.0,2.0,23.0,23.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.554039416084136,0.16,999999.0,32.048,3.182,0.829,1.317,21353.907,121.0,0.2032485277066101,3.453807359539113,0.9141443471919972 -7324.0,7324,,Block 2036,0,25,PedestrianZones,2299694.447100556,144908.10548160254,10.0,0,0,0.0,0.0,0.0,0.0,,36459.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,231,0,8,0,6,7,0,114,3,0,0,0,0,89,318,0,2,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2036.0,410470002002036.0,1000000US410470002002036,0.0,0.01,80103.0,0.0,111.0,44.9423985,-123.0385624,0.0,3.0,8006602036,80068.0,0.0,0.0,913.0,0.0,0.0,0.0,0.0,,,,0,0.0,50.5,0.75,0.0,1.5,18.0,1.95,745.0,0.0,0.0,0.0,1.0,392369.56,2633.14,1.0,,,66.0,80066.0,2.0,404.0,410.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.00755762471728,0.198,999999.0,34.347,2.758,1.788,2.878,23823.909,111.0,0.202920928091497,3.455065174870909,0.9141878365584206 -7325.0,7325,,Block 2034,0,25,PedestrianZones,2299895.734881055,145039.7032923838,10.0,0,0,0.0,0.0,0.0,0.0,,17642.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,48,0,0,0,0,3,0,73,0,0,0,8,0,190,293,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2034.0,410470002002034.0,1000000US410470002002034,0.0,0.0,80103.0,0.0,118.0,44.943639,-123.0360654,0.0,3.0,8006502034,80068.0,0.0,0.0,914.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,46.0,0.0,0.0,0.0,1.0,189861.77,1743.42,1.0,,,65.0,80065.0,2.0,327.0,327.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.35862265951492,0.135,999999.0,44.141,3.575,2.41,3.91,30752.379,118.0,0.2039191476956266,3.450169249698045,0.914425286350784 -7326.0,7326,,Block 2035,0,25,PedestrianZones,2299847.21410966,144917.15194543716,10.0,0,0,0.0,0.0,0.0,0.0,,17843.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,35,112,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2035.0,410470002002035.0,1000000US410470002002035,0.0,0.0,80103.0,0.0,116.0,44.942523,-123.0366312,0.0,3.0,8006502035,80068.0,0.0,0.0,915.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,43.0,0.0,0.0,0.0,1.0,192025.88,1753.35,1.0,,,65.0,80065.0,2.0,84.0,84.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.408303760398542,0.111,999999.0,35.849,2.582,2.682,4.346,25724.807,116.0,0.2039367513363894,3.451777614094439,0.9149289316634598 -7327.0,7327,,Block 2044,0,25,PedestrianZones,2299798.208283968,144795.35079771696,10.0,0,0,0.0,0.0,0.0,0.0,,17933.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,44,0,0,0,0,0,0,6,0,0,0,0,0,13,42,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2044.0,410470002002044.0,1000000US410470002002044,0.0,0.06,80103.0,0.0,114.0,44.9414136,-123.0372034,0.0,3.0,8006602044,80068.0,0.0,0.0,916.0,0.0,0.0,0.0,0.0,,,,0,0.0,10.29,0.7099999999999999,0.0,1.5,18.0,0.0,65.0,0.0,0.0,0.0,1.0,192995.99,1757.52,1.0,,,66.0,80066.0,2.0,72.0,77.0,0.0,5.0,0.0,0.0,7.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.430574460877746,0.274,999999.0,38.776,2.65,1.686,2.646,26509.882,114.0,0.2038905350836636,3.452602527803024,0.9151581805592098 -7328.0,7328,,Block 2045,0,25,PedestrianZones,2299750.817133409,144674.4775524292,10.0,0,0,0.0,0.0,0.0,0.0,,17896.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,2,98,6,0,0,0,0,0,74,0,0,0,25,0,43,177,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2045.0,410470002002045.0,1000000US410470002002045,0.0,0.07,80103.0,0.0,116.0,44.9403129,-123.0377555,0.0,3.0,8006702045,80068.0,0.0,0.0,917.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.639999999999999,0.55,0.0,1.5,18.0,0.0,84.0,0.0,0.0,0.0,1.0,192591.07,1755.9,1.0,,,67.0,80067.0,2.0,336.0,360.0,0.0,24.0,0.0,0.0,44.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.4212787356088254,0.196,999999.0,35.058,2.257,1.737,2.72,24178.391,116.0,0.2037114010724809,3.4517103754312366,0.9148765771098 -7329.0,7329,,Block 2049,0,25,PedestrianZones,2299706.187264642,144560.08367932757,10.0,0,0,0.0,0.0,0.0,0.0,,15802.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,4,29,1,0,0,33,4,0,44,14,0,0,7,0,21,139,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2049.0,410470002002049.0,1000000US410470002002049,0.0,0.04,80103.0,0.0,107.0,44.9392714,-123.0382752,0.0,3.0,8006702049,80068.0,0.0,0.0,918.0,0.0,0.0,0.0,0.0,,,,0,0.0,20.63,0.75,0.0,1.5,18.0,0.0,45.0,0.0,0.0,0.0,1.0,170057.07,1654.12,1.0,,,67.0,80067.0,2.0,165.0,171.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.903969787424264,0.041,999999.0,38.478,3.466,1.816,2.925,26498.387,107.0,0.2034379215124477,3.446416393009,0.9136858227675 -7330.0,7330,,Block 2033,0,25,PedestrianZones,2300021.7995465663,144991.5829742315,10.0,0,0,0.0,0.0,0.0,0.0,,17936.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,551,0,0,0,0,0,83,450,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2033.0,410470002002033.0,1000000US410470002002033,0.0,0.0,80103.0,0.0,128.0,44.9432418,-123.0344497,0.0,3.0,8006502033,80068.0,0.0,0.0,919.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,506.0,0.0,0.0,0.0,1.0,193026.1,1758.15,1.0,,,65.0,80065.0,2.0,432.0,432.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.431265581554627,0.044,999999.0,50.136,1.315,2.388,4.343,34866.733,128.0,0.2046821984603977,3.44344236506773,0.9142398739602036 -7331.0,7331,,Block 2000,0,25,PedestrianZones,2300152.9075682275,145334.458834213,10.0,0,0,0.0,0.0,0.0,0.0,,44395.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,18,20,3,0,0,37,0,110,0,0,0,8,0,2,146,0,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2000.0,410470002002000.0,1000000US410470002002000,0.0,0.2,80103.0,0.0,139.0,44.9463629,-123.0329253,0.0,3.0,8006902000,80068.0,0.0,0.0,920.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.48,0.63,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,1.0,477765.95,3334.52,1.0,,,69.0,80069.0,2.0,176.0,221.0,0.0,45.0,0.0,0.0,71.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.96798735319492,0.0,999999.0,30.913,1.372,2.579,5.322,23190.376,139.0,0.0,0.0,0.0 -7332.0,7332,,Block 2042,0,25,PedestrianZones,2299973.0812081224,144868.15914886407,10.0,0,0,0.0,0.0,0.0,0.0,,17969.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,23,0,0,0,212,9,0,262,0,0,0,3,0,2,358,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2042.0,410470002002042.0,1000000US410470002002042,0.0,0.0,80103.0,0.0,125.0,44.9421179,-123.0350176,0.0,3.0,8006802042,80068.0,0.0,0.0,921.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,58.0,0.0,0.0,0.0,1.0,193377.89,1758.96,1.0,,,68.0,80068.0,2.0,361.0,361.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.439341657288144,0.11,999999.0,45.269,2.337,2.215,3.613,31284.253,125.0,0.204728900364016,3.445099918476388,0.914769808173095 -7333.0,7333,,Block 2027,0,25,PedestrianZones,2300197.663134042,145063.98813776037,10.0,0,0,0.0,0.0,0.0,0.0,,18196.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,8,0,0,71,0,0,0.0,184.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2027.0,410470002002027.0,1000000US410470002002027,0.0,0.0,80103.0,0.0,146.0,44.9439427,-123.032251,0.0,3.0,8006802027,80068.0,0.0,0.0,922.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,195825.43,1770.91,1.0,,,68.0,80068.0,2.0,88.0,88.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.495529300143616,0.124,999999.0,37.797,1.191,2.081,3.931,26706.495,146.0,0.2052441384619344,3.425881785418916,0.9121657410957196 -7334.0,7334,,Block 2032,0,25,PedestrianZones,2300148.0816725204,144940.6796209515,10.0,0,0,0.0,0.0,0.0,0.0,,18193.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,2,0,0,0,0,105,0,92,0,0,0,12,0,0,116,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2032.0,410470002002032.0,1000000US410470002002032,0.0,0.12,80103.0,0.0,140.0,44.9428196,-123.03283,0.0,3.0,8006802032,80068.0,0.0,0.0,923.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.16,0.57,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,195793.14,1769.81,1.0,,,68.0,80068.0,2.0,154.0,175.0,0.0,21.0,0.0,0.0,37.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.494788040464474,0.195,999999.0,39.914,2.499,2.535,4.812,28624.811,140.0,0.205448420401646,3.4322180805724383,0.9134974401552812 -7335.0,7335,,Block 2052,0,25,PedestrianZones,2300004.872286848,144574.899053131,10.0,0,0,0.0,0.0,0.0,0.0,,17506.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,320,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2052.0,410470002002052.0,1000000US410470002002052,0.0,0.0,80103.0,0.0,132.0,44.939489,-123.0344984,0.0,3.0,8006702052,80068.0,0.0,0.0,924.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,0.0,1.0,188398.16,1736.77,1.0,,,67.0,80067.0,2.0,219.0,219.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.325022886657953,0.039,999999.0,31.231,0.0,0.346,0.402,20244.51,132.0,0.2049964751724043,3.4328435278311336,0.913318742764468 -7336.0,7336,,Block 2041,0,25,PedestrianZones,2300100.253497025,144819.20234818157,10.0,0,0,0.0,0.0,0.0,0.0,,17490.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,7,0,11,0,0,0,0,43,0,0,0,0,0,0,82,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2041.0,410470002002041.0,1000000US410470002002041,0.0,0.14,80103.0,0.0,140.0,44.9417134,-123.0333875,0.0,3.0,8006802041,80068.0,0.0,0.0,925.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.85,0.77,0.0,0.0,0.0,0.0,145.0,0.0,0.0,0.0,1.0,188219.02,1736.9,1.0,,,68.0,80068.0,2.0,63.0,73.0,0.0,10.0,0.0,0.0,13.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.320910265931456,0.12,999999.0,57.275,2.248,2.352,3.84,39113.459,140.0,0.2054769197026686,3.4352717617798545,0.9141364022911366 -7337.0,7337,,Block 2017,0,25,PedestrianZones,2299341.3794701262,144355.4171581421,10.0,0,0,0.0,0.0,0.0,0.0,,19909.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,1,0,0,68,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2017.0,410470002002017.0,1000000US410470002002017,0.0,0.02,80135.0,0.0,82.0,44.9373272,-123.0428137,0.0,3.0,8006202017,80068.0,0.0,0.0,926.0,0.0,0.0,0.0,0.0,,,,0,0.0,26.5,0.5,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,1.0,214251.88,1876.13,1.0,,,62.0,80062.0,2.0,53.0,54.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.9185419950991385,0.048,999999.0,36.733,2.129,4.267,7.017,28000.342,82.0,0.0,0.0,0.0 -7338.0,7338,,Block 3042,0,25,PedestrianZones,2299428.624415603,144225.74781270412,10.0,0,0,11.88,0.0,0.0,0.0,,65202.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,3,0,1,230,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3042.0,410470002003042.0,1000000US410470002003042,0.0,0.0,80135.0,0.0,86.0,44.9361855,-123.0416571,0.0,3.0,8007103042,80068.0,0.0,0.0,927.0,0.0,11.88,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,378.0,0.0,0.0,0.0,1.0,701694.24,4002.19,1.0,,,71.0,80071.0,2.0,298.0,298.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,16.108668920980868,0.042,999999.0,31.039,1.392,2.904,4.748,22904.008,86.0,0.0,0.0,0.0 -7339.0,7339,,Block 3040,0,25,PedestrianZones,2299664.21871542,144449.97533992174,10.0,0,0,0.0,0.0,0.0,0.0,,15726.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,9,1,0,0,0,240,0,0,19,0,0,0,0,0,2,151,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3040.0,410470002003040.0,1000000US410470002003040,0.0,0.0,80103.0,0.0,100.0,44.9382691,-123.0387629,0.0,3.0,8007203040,80068.0,0.0,0.0,928.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,41.0,0.0,0.0,0.0,1.0,169242.28,1648.59,1.0,,,72.0,80072.0,2.0,238.0,238.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.8852647006194383,0.119,999999.0,75.077,1.154,2.439,3.78,50468.699,100.0,0.2030513722220365,3.439949068612969,0.9120960307795948 -7340.0,7340,,Block 3046,0,25,PedestrianZones,2299622.874829328,144342.95036251497,10.0,0,0,1.05,0.0,0.0,0.0,,15176.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,50,0,0,0,0,10,0,2,0,0,0,2,0,1,80,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3046.0,410470002003046.0,1000000US410470002003046,0.0,0.0,80103.0,0.0,95.0,44.9372947,-123.0392439,0.0,3.0,8007303046,80068.0,0.0,0.0,929.0,0.0,1.05,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,2.23,262.0,0.0,0.0,0.0,1.0,163326.49,1633.65,1.0,,,73.0,80073.0,2.0,81.0,81.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.749456990083389,0.179,999999.0,33.063,1.897,2.633,4.237,23871.92,95.0,0.2026124489821712,3.431515867312055,0.9100355137202618 -7343.0,7343,,Block 3009,0,25,PedestrianZones,2300993.307286465,145006.39932087384,10.0,0,0,0.0,0.0,0.0,0.0,,100809.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,277,0,0,3,0,0,0,0,0,0,0,0,171,0,0,2107.0,0.0,2107.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3009.0,410470006003009.0,1000000US410470006003009,0.0,0.03,80103.0,0.0,141.0,44.9436486,-123.022151,0.0,3.0,8010303009,80082.0,0.0,0.0,938.0,0.0,0.0,0.0,0.0,,,,0,0.0,23.88,0.75,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,1.0,1084884.01,4413.34,1.0,,,103.0,80103.0,1.0,191.0,197.0,0.0,6.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.905487810104404,0.142,999999.0,8.917,0.525,4.93,10.021,12120.729,141.0,0.0,0.0,0.0 -7344.0,7344,,Block 1016,0,25,PedestrianZones,2301281.374524882,145828.3702317175,10.0,0,0,0.0,0.0,0.0,0.0,,26552.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,19,0,0,0,77,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1016.0,410470006001016.0,1000000US410470006001016,0.0,0.32,80103.0,0.0,152.0,44.951123,-123.0188272,0.0,3.0,8009801016,80082.0,0.0,0.0,939.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.92,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285745.05,3850.01,1.0,,,98.0,80098.0,1.0,57.0,84.0,0.0,27.0,0.0,0.0,62.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.559798024685314,0.241,999999.0,4.079,0.211,4.401,10.002,9011.416,152.0,0.0,0.0,0.0 -7351.0,7351,,Block 3038,0,25,PedestrianZones,2300141.699002919,146181.97483079557,10.0,0,0,0.0,0.0,0.0,0.0,,9902.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,15,0,4,0,0,0,0,0,2,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3038.0,410470003003038.0,1000000US410470003003038,0.0,0.07,80103.0,0.0,126.0,44.953983,-123.033404,0.0,3.0,8008903038,80068.0,0.0,0.0,999.0,0.0,0.0,0.0,0.0,,,,0,0.0,9.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106566.9,1306.11,1.0,,,89.0,80089.0,2.0,27.0,29.0,0.0,2.0,0.0,0.0,3.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.446437262203338,0.123,999999.0,5.838,0.219,2.718,5.279,7114.746,126.0,0.0,0.0,0.0 -7352.0,7352,,Block 1010,0,25,PedestrianZones,2300010.520942011,146124.53629489598,10.0,0,0,0.0,0.0,0.0,0.0,,10570.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1010.0,410470002001010.0,1000000US410470002001010,0.0,0.0,80103.0,0.0,121.0,44.9534294,-123.0350429,0.0,1.0,8008501010,80068.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.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,113753.29,1352.13,1.0,,,85.0,80085.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.611413804369367,0.303,999999.0,7.558,0.461,2.001,3.916,7343.394,121.0,0.0,0.0,0.0 -7353.0,7353,,Block 1009,0,25,PedestrianZones,2299973.833485804,146029.5368364306,10.0,0,0,0.0,0.0,0.0,0.0,,10946.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1009.0,410470002001009.0,1000000US410470002001009,0.0,0.0,80103.0,0.0,120.0,44.9525645,-123.0354699,0.0,3.0,8008501009,80068.0,0.0,0.0,1001.0,0.0,0.0,0.0,0.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,117796.9,1374.37,1.0,,,85.0,80085.0,2.0,27.0,27.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.704242413469592,0.243,999999.0,9.399,0.621,2.203,4.411,8838.618,120.0,0.0,0.0,0.0 -7354.0,7354,,Block 1000,0,25,PedestrianZones,2300126.272381516,146413.83499630715,10.0,0,0,0.0,0.0,0.0,0.0,,12182.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,39,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1000.0,410470002001000.0,1000000US410470002001000,0.0,0.05,80103.0,0.0,117.0,44.9560642,-123.0336916,0.0,3.0,8008501000,80068.0,0.0,0.0,1002.0,0.0,0.0,0.0,0.0,,,,0,0.0,9.25,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131099.85,1471.78,1.0,,,85.0,80085.0,2.0,37.0,39.0,0.0,2.0,0.0,0.0,4.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0096357038978785,0.24,999999.0,4.548,0.114,2.293,4.148,5565.433,117.0,0.0,0.0,0.0 -7355.0,7355,,Block 1002,0,25,PedestrianZones,2300082.959756724,146313.8910934086,10.0,0,0,0.0,0.0,0.0,0.0,,10975.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,42,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1002.0,410470002001002.0,1000000US410470002001002,0.0,0.0,80103.0,0.0,115.0,44.955153,-123.0342005,0.0,3.0,8008501002,80068.0,0.0,0.0,1003.0,0.0,0.0,0.0,0.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,118111.23,1375.52,1.0,,,85.0,80085.0,2.0,38.0,38.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7114582868103447,0.246,999999.0,5.975,0.124,2.618,4.841,6922.623,115.0,0.0,0.0,0.0 -7356.0,7356,,Block 1011,0,25,PedestrianZones,2300047.249642316,146218.42894240518,10.0,0,0,0.0,0.0,0.0,0.0,,10584.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,17,0,6,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1011.0,410470002001011.0,1000000US410470002001011,0.0,0.0,80103.0,0.0,114.0,44.9542843,-123.034615,0.0,3.0,8008501011,80068.0,0.0,0.0,1004.0,0.0,0.0,0.0,0.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,113906.3,1351.05,1.0,,,85.0,80085.0,2.0,46.0,46.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6149266194983283,0.244,999999.0,6.301,0.191,2.351,4.414,6857.734,114.0,0.0,0.0,0.0 -7357.0,7357,,Block 3032,0,25,PedestrianZones,2300216.4268755475,146370.47721613146,10.0,0,0,0.0,0.0,0.0,0.0,,10025.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3032.0,410470003003032.0,1000000US410470003003032,0.0,0.5999999999999999,80103.0,0.0,133.0,44.9556997,-123.0325323,0.0,1.0,8008903032,80068.0,0.0,0.0,1005.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.38,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107886.13,1314.5,1.0,,,89.0,80089.0,2.0,12.0,30.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4767225872465164,0.125,999999.0,6.593,0.145,2.751,5.23,7567.022,133.0,0.0,0.0,0.0 -7358.0,7358,,Block 3039,0,25,PedestrianZones,2300105.7311847094,146087.4502070817,10.0,0,0,0.0,0.0,0.0,0.0,,9825.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3039.0,410470003003039.0,1000000US410470003003039,0.0,0.4799999999999999,80103.0,0.0,128.0,44.9531227,-123.0338221,0.0,3.0,8008903039,80068.0,0.0,0.0,1006.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105737.18,1300.71,1.0,,,89.0,80089.0,2.0,11.0,21.0,0.0,10.0,0.0,0.0,11.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.427389404809824,0.248,999999.0,7.282,0.437,2.283,4.528,7558.169,128.0,0.0,0.0,0.0 -7391.0,7391,,Block 2009,0,25,PedestrianZones,2301257.0041419407,145441.8251285341,10.0,0,0,0.0,0.0,0.0,0.0,,10933.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2009.0,410470006002009.0,1000000US410470006002009,0.0,0.93,80103.0,0.0,143.0,44.9476393,-123.0189832,0.0,1.0,8010202009,80082.0,0.0,0.0,1082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117658.49,1378.85,1.0,,,102.0,80102.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,37.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7010649312432617,0.13,999999.0,2.122,0.146,4.203,9.116,7192.44,143.0,0.0,0.0,0.0 -7392.0,7392,,Block 2014,0,25,PedestrianZones,2301201.069498261,145286.6919926678,10.0,0,0,0.0,0.0,0.0,0.0,,19887.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2014.0,410470006002014.0,1000000US410470006002014,0.0,0.97,80103.0,0.0,149.0,44.9462282,-123.0196303,0.0,1.0,8010202014,80082.0,0.0,0.0,1083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,214017.95,2068.44,1.0,,,102.0,80102.0,1.0,1.0,36.0,0.0,35.0,0.0,0.0,93.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.91317182677756,0.105,999999.0,9.881,0.026,4.034,8.222,11585.884,149.0,0.0,0.0,0.0 -7393.0,7393,,Block 2010,0,25,PedestrianZones,2301346.235452728,145409.5864684892,10.0,0,0,0.0,0.0,0.0,0.0,,10675.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2010.0,410470006002010.0,1000000US410470006002010,0.0,1.0,80103.0,0.0,139.0,44.9473743,-123.0178402,0.0,1.0,8010202010,80082.0,0.0,0.0,1084.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114887.08,1367.75,1.0,,,102.0,80102.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,34.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.637442032654288,0.092,999999.0,2.185,0.164,4.18,9.272,7332.89,139.0,0.0,0.0,0.0 -7394.0,7394,,Block 3019,0,25,PedestrianZones,2301337.9837691598,144792.26918101552,10.0,0,0,0.0,0.0,0.0,0.0,,12251.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3019.0,410470006003019.0,1000000US410470006003019,0.0,0.93,80103.0,0.0,144.0,44.9418193,-123.017701,0.0,1.0,8010403019,80082.0,0.0,0.0,1085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131839.36,1449.41,1.0,,,104.0,80104.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.026612466576449,0.149,999999.0,2.597,0.094,4.994,9.793,7929.113,144.0,0.0,0.0,0.0 -7395.0,7395,,Block 1017,0,25,PedestrianZones,2301447.115529624,145919.24815116203,10.0,0,0,0.0,0.0,0.0,0.0,,14419.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1017.0,410470006001017.0,1000000US410470006001017,0.0,0.95,80103.0,0.0,142.0,44.951987,-123.0167636,0.0,1.0,8009801017,80082.0,0.0,0.0,1086.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155174.4,1704.42,1.0,,,98.0,80098.0,1.0,1.0,22.0,0.0,21.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.562310865199891,0.268,999999.0,4.704,0.26,3.707,8.547,8480.937,142.0,0.0,0.0,0.0 -7396.0,7396,,Block 1018,0,25,PedestrianZones,2301602.4006519406,145858.96104403248,10.0,0,0,0.0,0.0,0.0,0.0,,12918.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1018.0,410470006001018.0,1000000US410470006001018,0.0,1.0,80103.0,0.0,128.0,44.9514882,-123.0147727,0.0,1.0,8009801018,80082.0,0.0,0.0,1087.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139021.53,1580.49,1.0,,,98.0,80098.0,1.0,0.0,20.0,0.0,20.0,0.0,0.0,43.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.191492338971521,0.164,999999.0,4.453,0.195,3.58,8.145,8062.296,128.0,0.0,0.0,0.0 -7421.0,7421,,Block 2016,0,25,PedestrianZones,2299438.948702953,144555.59157857235,10.0,0,0,0.0,0.0,0.0,0.0,,8402.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,6,0,5,0,0,0,0,24,0,0,0,14,0,11,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2016.0,410470002002016.0,1000000US410470002002016,0.0,0.0,80103.0,0.0,85.0,44.9391554,-123.0416578,0.0,3.0,8006302016,80068.0,0.0,0.0,1163.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,10.0,0.0,0.0,0.0,1.0,90421.35,1364.72,1.0,,,63.0,80063.0,2.0,129.0,129.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0757867178548355,0.026,999999.0,34.207,2.156,2.581,4.108,24521.474,85.0,0.2034070566801354,3.4680461440866823,0.9176016276163192 -7441.0,7441,,Block 2019,0,25,PedestrianZones,2301767.423031921,145304.33237544153,10.0,0,0,0.0,0.0,0.0,0.0,,23174.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2019.0,410470006002019.0,1000000US410470006002019,0.0,0.97,80103.0,0.0,153.0,44.9465455,-123.0124638,0.0,1.0,8010002019,80082.0,0.0,0.0,1204.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,249396.1,2126.45,1.0,,,100.0,80100.0,1.0,1.0,31.0,0.0,30.0,0.0,0.0,74.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.72534153205594,0.179,999999.0,1.965,0.171,4.086,9.112,7089.395,153.0,0.0,0.0,0.0 -7445.0,7445,,Block 1024,0,25,PedestrianZones,2301346.567080137,145690.72236164848,10.0,0,0,5.57,0.0,0.0,0.0,,46573.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1024.0,410470006001024.0,1000000US410470006001024,4.49,0.93,80103.0,0.0,151.0,44.9499032,-123.017947,0.0,1.0,8009801024,80082.0,0.0,0.0,1209.0,0.0,5.57,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.03,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,501208.89,2892.17,1.0,,,98.0,80098.0,1.0,2.0,27.0,0.0,25.0,0.0,0.0,61.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.50616265998216,0.143,999999.0,1.442,0.252,4.572,10.594,7703.425,151.0,0.0,0.0,0.0 -7447.0,7447,,Block 1029,0,25,PedestrianZones,2300237.5147472727,145525.4721640397,10.0,0,0,0.04,0.0,0.0,0.0,,20517.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,1,0,0,0,0,15,0,0,0,0,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1029.0,410470002001029.0,1000000US410470002001029,500.0,0.6099999999999999,80103.0,0.0,147.0,44.9481049,-123.0319295,0.0,1.0,8008401029,80068.0,0.0,0.0,1217.0,0.0,0.04,0.0,2.0,HISTORICAL AREA,DEVELOPED,,0,0.0,0.2399999999999999,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,220800.99,2959.42,1.0,,,84.0,80084.0,2.0,13.0,33.0,0.0,20.0,0.0,0.0,54.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.068888808579959,0.145,999999.0,17.114,0.292,4.039,7.951,16041.359,147.0,0.0,0.0,0.0 -7448.0,7448,,Block 1019,0,25,PedestrianZones,2300566.2988937227,145578.21184364313,10.0,0,0,0.0,0.0,0.0,0.0,,10723.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1019.0,410470002001019.0,1000000US410470002001019,0.0,1.0,80103.0,0.0,153.0,44.9486719,-123.0277859,0.0,1.0,8008401019,80082.0,0.0,0.0,1218.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115399.49,1352.94,1.0,,,84.0,80084.0,2.0,0.0,16.0,0.0,16.0,0.0,0.0,47.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.649205467605851,0.0,999999.0,23.156,0.228,4.091,8.208,20072.538,153.0,0.0,0.0,0.0 -7449.0,7449,,Block 3020,0,25,PedestrianZones,2300532.089175994,144791.24610988845,10.0,0,0,0.0,0.0,0.0,0.0,,16937.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,585,0,0,20,0,0,0,0,0,0,1243,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3020.0,410470002003020.0,1000000US410470002003020,0.0,0.0,80103.0,0.0,120.0,44.9415836,-123.0279072,0.0,3.0,8008103020,80068.0,0.0,0.0,1219.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,231.0,0.0,0.0,0.0,1.0,182274.2,1701.66,1.0,,,81.0,80081.0,2.0,983.0,983.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.1844361445813405,0.2,999999.0,64.241,1.026,3.011,5.273,44488.942,120.0,0.2066125014856906,3.3919374342811843,0.9087668369766274 -7450.0,7450,,Block 3024,0,25,PedestrianZones,2301072.159500883,144715.80946179,10.0,0,0,0.0,0.0,0.0,0.0,,15390.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3024.0,410470006003024.0,1000000US410470006003024,0.0,0.77,80103.0,0.0,145.0,44.9410569,-123.0210374,0.0,1.0,8010403024,80082.0,0.0,0.0,1221.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,165622.65,1762.08,1.0,,,104.0,80104.0,1.0,8.0,35.0,0.0,27.0,0.0,0.0,53.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.802169490294964,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,145.0,0.0,0.0,0.0 -7482.0,7482,,Block 6009,0,25,PedestrianZones,2300703.204007928,144439.8400863603,10.0,0,0,0.0,0.0,0.0,0.0,,16119.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,81,1,0,0,0,0,0,1,0,0,116,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6009.0,410470009006009.0,1000000US410470009006009,0.0,0.11,80103.0,0.0,134.0,44.9384709,-123.0256009,0.0,3.0,8010606009,80068.0,0.0,0.0,7802.0,0.0,0.0,0.0,0.0,,,,0,0.0,6.0,0.7299999999999999,0.0,0.0,0.0,0.0,123.0,0.0,0.0,0.0,1.0,173467.41,1664.38,1.0,,,106.0,80106.0,1.0,90.0,101.0,0.0,11.0,0.0,0.0,15.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.982260358463692,0.04,999999.0,47.833,0.532,3.625,7.036,35116.244,134.0,0.2049607822376852,3.3585714470212524,0.9007994333985272 -7485.0,7485,,Block 6024,0,25,PedestrianZones,2301192.694767505,144105.65276981585,10.0,0,0,0.0,0.0,0.0,0.0,,16329.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,16,0,0,0,0,6,0,0,0,0,0,0,0,0,41,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6024.0,410470009006024.0,1000000US410470009006024,0.0,0.2999999999999999,80103.0,0.0,170.0,44.9356025,-123.0192698,0.0,3.0,8010806024,80082.0,0.0,0.0,7805.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.88,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,175726.06,1678.61,1.0,,,108.0,80108.0,1.0,30.0,43.0,0.0,13.0,0.0,0.0,16.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.0341116224818645,0.153,999999.0,4.556,0.13,5.345,10.433,9593.309,170.0,0.0,0.0,0.0 -7489.0,7489,,Block 3030,0,25,PedestrianZones,2300608.461130253,144583.82890272807,10.0,0,0,0.0,0.0,0.0,0.0,,10876.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,58,0,0,5,0,0,0,0,0,0,98,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3030.0,410470002003030.0,1000000US410470002003030,0.0,0.31,80103.0,0.0,127.0,44.9397394,-123.0268578,0.0,3.0,8008003030,80068.0,0.0,0.0,7816.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.34,0.6099999999999999,0.0,0.0,0.0,0.0,65.0,0.0,0.0,0.0,1.0,117043.23,1486.67,1.0,,,80.0,80080.0,2.0,82.0,119.0,0.0,37.0,0.0,0.0,61.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.686940354996327,0.123,999999.0,44.552,0.677,3.562,6.682,32789.736,127.0,0.2060034809160703,3.3784371431977025,0.9056436937368372 -7490.0,7490,,Block 3013,0,25,PedestrianZones,2301111.134355905,144855.90217465663,10.0,0,0,0.0,0.0,0.0,0.0,,19510.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3013.0,410470006003013.0,1000000US410470006003013,0.0,0.92,80103.0,0.0,144.0,44.942328,-123.0205992,0.0,1.0,8010403013,80082.0,0.0,0.0,7817.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209958.83,2045.9,1.0,,,104.0,80104.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.819987282681121,0.211,999999.0,22.355,0.527,4.932,9.929,20662.071,144.0,0.0,0.0,0.0 -7504.0,7504,,Block 3034,0,25,PedestrianZones,2300273.079342173,146241.41405125847,10.0,0,0,0.0,0.0,0.0,0.0,,10420.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3034.0,410470003003034.0,1000000US410470003003034,0.0,0.87,80103.0,0.0,140.0,44.9545548,-123.0317633,0.0,1.0,8008903034,80068.0,0.0,0.0,7846.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.13,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112135.76,1339.59,1.0,,,89.0,80089.0,2.0,2.0,15.0,0.0,13.0,0.0,0.0,16.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5742805547556,0.121,999999.0,5.37,0.164,2.884,5.747,7115.356,140.0,0.0,0.0,0.0 -7505.0,7505,,Block 3030,0,25,PedestrianZones,2300404.722379136,146297.1910456492,10.0,0,0,0.0,0.0,0.0,0.0,,10155.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3030.0,410470003003030.0,1000000US410470003003030,0.0,1.0,80103.0,0.0,155.0,44.9550936,-123.0301178,0.0,1.0,8008903030,80082.0,0.0,0.0,7847.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,109291.12,1320.0,1.0,,,89.0,80089.0,2.0,0.0,25.0,0.0,25.0,0.0,0.0,45.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.508976635643998,0.0,999999.0,6.21,0.22,3.68,7.439,8734.805,155.0,0.0,0.0,0.0 -7506.0,7506,,Block 3024,0,25,PedestrianZones,2300359.608921414,146514.0889478618,10.0,0,0,0.0,0.0,0.0,0.0,,11184.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3024.0,410470003003024.0,1000000US410470003003024,0.0,1.0,80103.0,0.0,147.0,44.9570318,-123.0307754,0.0,1.0,8008803024,80417.0,0.0,0.0,7848.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,120364.1,1383.45,1.0,,,88.0,80088.0,1.0,0.0,38.0,0.0,38.0,0.0,0.0,71.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7631770299496274,0.138,999999.0,5.145,0.146,2.88,5.455,6784.034,147.0,0.0,0.0,0.0 -7507.0,7507,,Block 4029,0,25,PedestrianZones,2300501.440078909,146258.12289234405,10.0,0,0,0.0,0.0,0.0,0.0,,10581.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4029.0,410470003004029.0,1000000US410470003004029,0.0,1.0,80103.0,0.0,169.0,44.9547694,-123.0288771,0.0,1.0,8009104029,80082.0,0.0,0.0,7849.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113875.09,1350.93,1.0,,,91.0,80091.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,28.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.614210086068724,0.065,999999.0,5.643,0.15,4.058,8.272,8905.542,169.0,0.0,0.0,0.0 -7508.0,7508,,Block 4040,0,25,PedestrianZones,2300391.03039936,145974.56449545285,10.0,0,0,0.0,0.0,0.0,0.0,,10564.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,10,0,0,0,0,14,0,2,0,0,0,12,0,0,45,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4040.0,410470003004040.0,1000000US410470003004040,0.0,0.0,80103.0,0.0,157.0,44.9521877,-123.0301632,0.0,3.0,8009004040,80082.0,0.0,0.0,7850.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,113691.92,1350.1,1.0,,,90.0,80090.0,1.0,46.0,46.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.610005033315712,0.124,999999.0,7.173,0.206,3.773,8.04,9736.281,157.0,0.0,0.0,0.0 -7509.0,7509,,Block 4037,0,25,PedestrianZones,2300594.951957921,146023.5921673494,10.0,0,0,0.0,0.0,0.0,0.0,,3207.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4037.0,410470003004037.0,1000000US410470003004037,0.0,0.4,80103.0,0.0,169.0,44.9526862,-123.0275995,0.0,3.0,8009104037,80082.0,0.0,0.0,7851.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34512.27,920.49,1.0,,,91.0,80091.0,1.0,3.0,5.0,0.0,2.0,0.0,0.0,3.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.7922920589048569,0.124,999999.0,6.016,0.205,4.157,9.114,9682.938,169.0,0.0,0.0,0.0 -7510.0,7510,,Block 4003,0,25,PedestrianZones,2300691.1382064503,147028.32279330655,10.0,0,0,0.0,0.0,0.0,0.0,,10756.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.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.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4003.0,410470003004003.0,1000000US410470003004003,0.0,0.93,80103.0,0.0,131.0,44.9617507,-123.0267793,0.0,1.0,8009304003,80417.0,0.0,0.0,7852.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115755.78,1365.47,1.0,,,93.0,80093.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,33.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.657384743984064,0.056,999999.0,4.352,1.398,2.426,5.704,6436.347,131.0,0.0,0.0,0.0 -7511.0,7511,,Block 4011,0,25,PedestrianZones,2300873.3791801957,146784.24401524733,10.0,0,0,0.0,0.0,0.0,0.0,,10815.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4011.0,410470003004011.0,1000000US410470003004011,0.0,1.0,80103.0,0.0,158.0,44.9596065,-123.0243737,0.0,1.0,8009304011,80417.0,0.0,0.0,7853.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116390.63,1367.6,1.0,,,93.0,80093.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,46.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.671958787662289,0.206,999999.0,3.112,0.225,3.922,9.314,7952.286,158.0,0.0,0.0,0.0 -7535.0,7535,,Block 4001,0,25,PedestrianZones,2300880.4093342186,147018.93800813775,10.0,0,0,0.0,0.0,0.0,0.0,,11426.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4001.0,410470003004001.0,1000000US410470003004001,0.0,1.0,80103.0,0.0,135.0,44.9617195,-123.0243776,0.0,1.0,8009304001,80417.0,0.0,0.0,7921.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,122963.07,1558.57,1.0,,,93.0,80093.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8228410740693723,0.085,999999.0,4.163,1.491,3.024,7.202,7273.468,135.0,0.0,0.0,0.0 -7536.0,7536,,Block 4014,0,25,PedestrianZones,2300869.278232303,146666.4357614087,10.0,0,0,0.0,0.0,0.0,0.0,,11740.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4014.0,410470003004014.0,1000000US410470003004014,0.0,1.0,80103.0,0.0,165.0,44.9585456,-123.024379,0.0,1.0,8009204014,80417.0,0.0,0.0,7922.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126346.97,1436.52,1.0,,,92.0,80092.0,1.0,0.0,17.0,0.0,17.0,0.0,0.0,44.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.90052478705218,0.275,999999.0,3.023,0.199,3.769,8.798,7565.523,165.0,0.0,0.0,0.0 -7537.0,7537,,Block 4009,0,25,PedestrianZones,2300974.9866239456,146898.75319836527,10.0,0,0,0.0,0.0,0.0,0.0,,12088.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4009.0,410470003004009.0,1000000US410470003004009,0.0,1.0,80103.0,0.0,135.0,44.960665,-123.0231318,0.0,1.0,8009304009,80417.0,0.0,0.0,7923.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,130088.45,1455.56,1.0,,,93.0,80093.0,1.0,0.0,10.0,0.0,10.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.986417305237846,0.186,999999.0,2.076,0.107,3.767,9.353,7314.88,135.0,0.0,0.0,0.0 -7538.0,7538,,Block 4015,0,25,PedestrianZones,2300773.3829051675,146590.5491735098,10.0,0,0,0.0,0.0,0.0,0.0,,26485.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.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.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4015.0,410470003004015.0,1000000US410470003004015,0.0,0.97,80103.0,0.0,173.0,44.9578361,-123.0255639,0.0,1.0,8009204015,80417.0,0.0,0.0,7924.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285030.86,2489.82,1.0,,,92.0,80092.0,1.0,1.0,38.0,0.0,37.0,0.0,0.0,94.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.543402382088144,0.319,999999.0,3.455,0.176,4.185,9.463,8267.459,173.0,0.0,0.0,0.0 -7539.0,7539,,Block 4010,0,25,PedestrianZones,2300970.9033294343,146779.97299055918,10.0,0,0,0.0,0.0,0.0,0.0,,10884.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,23,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4010.0,410470003004010.0,1000000US410470003004010,0.0,0.5,80103.0,0.0,146.0,44.9595955,-123.0231365,0.0,3.0,8009304010,80417.0,0.0,0.0,7925.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4199999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117129.81,1372.22,1.0,,,93.0,80093.0,1.0,11.0,22.0,0.0,11.0,0.0,0.0,26.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.688928121972915,0.264,999999.0,4.43,0.228,3.49,8.402,8212.644,146.0,0.0,0.0,0.0 -7540.0,7540,,Block 4013,0,25,PedestrianZones,2300965.225689586,146662.25996156648,10.0,0,0,0.0,0.0,0.0,0.0,,12276.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4013.0,410470003004013.0,1000000US410470003004013,0.0,1.0,80103.0,0.0,156.0,44.958535,-123.0231619,0.0,1.0,8009204013,80417.0,0.0,0.0,7926.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132112.78,1463.93,1.0,,,92.0,80092.0,1.0,0.0,16.0,0.0,16.0,0.0,0.0,37.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0328894963759603,0.254,999999.0,3.557,0.204,3.95,9.634,8442.349,156.0,0.0,0.0,0.0 -7543.0,7543,,Block 4021,0,25,PedestrianZones,2300766.5495605897,146384.2330377767,10.0,0,0,0.0,0.0,0.0,0.0,,14489.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4021.0,410470003004021.0,1000000US410470003004021,0.0,1.0,80103.0,0.0,174.0,44.9559784,-123.0255687,0.0,1.0,8009204021,80082.0,0.0,0.0,7929.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155930.31,1598.15,1.0,,,92.0,80092.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5796642754616497,0.189,999999.0,3.137,0.14,4.432,9.444,8052.12,174.0,0.0,0.0,0.0 -7544.0,7544,,Block 4020,0,25,PedestrianZones,2300725.650344355,146275.83275385358,10.0,0,0,0.0,0.0,0.0,0.0,,9783.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4020.0,410470003004020.0,1000000US410470003004020,0.0,1.0,80103.0,0.0,178.0,44.9549918,-123.0260439,0.0,1.0,8009104020,80082.0,0.0,0.0,7930.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,1.0,105283.52,1306.18,1.0,,,91.0,80091.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,24.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.416974833144649,0.147,999999.0,4.355,0.121,4.422,9.652,8964.99,178.0,0.0,0.0,0.0 -7545.0,7545,,Block 4025,0,25,PedestrianZones,2300822.8045236287,146239.65217376922,10.0,0,0,0.0,0.0,0.0,0.0,,9968.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4025.0,410470003004025.0,1000000US410470003004025,0.0,0.77,80103.0,0.0,173.0,44.9546937,-123.0247988,0.0,1.0,8009104025,80082.0,0.0,0.0,7931.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.13,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107276.57,1309.22,1.0,,,91.0,80091.0,1.0,3.0,13.0,0.0,10.0,0.0,0.0,23.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.462728937983489,0.085,999999.0,4.449,0.168,4.286,9.463,8903.53,173.0,0.0,0.0,0.0 -7546.0,7546,,Block 4026,0,25,PedestrianZones,2300776.318648566,146162.12531731243,10.0,0,0,0.0,0.0,0.0,0.0,,6640.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4026.0,410470003004026.0,1000000US410470003004026,0.0,0.33,80103.0,0.0,178.0,44.9539833,-123.025357,0.0,3.0,8009104026,80082.0,0.0,0.0,7932.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.43,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,71454.86,1184.77,1.0,,,91.0,80091.0,1.0,10.0,15.0,0.0,5.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6403764278676756,0.18,999999.0,4.997,0.147,4.367,9.452,9247.701,178.0,0.0,0.0,0.0 -7547.0,7547,,Block 4033,0,25,PedestrianZones,2300747.414435542,146051.57729660583,10.0,0,0,0.0,0.0,0.0,0.0,,10991.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,52,0,0,0.0,160.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4033.0,410470003004033.0,1000000US410470003004033,0.0,0.02,80103.0,0.0,179.0,44.9529808,-123.0256793,0.0,3.0,8009004033,80082.0,0.0,0.0,7933.0,0.0,0.0,0.0,0.0,,,,0,0.0,20.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118281.41,1354.29,1.0,,,90.0,80090.0,1.0,40.0,41.0,0.0,1.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7153652183984227,0.128,999999.0,4.955,0.151,4.55,9.935,9529.892,179.0,0.0,0.0,0.0 -7548.0,7548,,Block 2004,0,25,PedestrianZones,2300894.641867284,146231.50573660713,10.0,0,0,0.0,0.0,0.0,0.0,,2955.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2004.0,410470003002004.0,1000000US410470003002004,0.0,0.0,80103.0,0.0,169.0,44.9546406,-123.0238855,0.0,1.0,8009402004,80082.0,0.0,0.0,7934.0,0.0,0.0,0.0,0.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,31798.27,896.58,1.0,,,94.0,80094.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.7299871151938278,0.085,999999.0,4.449,0.168,4.286,9.463,8903.53,169.0,0.0,0.0,0.0 -7549.0,7549,,Block 4034,0,25,PedestrianZones,2300805.0596242677,146121.21049999955,10.0,0,0,0.0,0.0,0.0,0.0,,4041.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4034.0,410470003004034.0,1000000US410470003004034,0.0,0.33,80103.0,0.0,177.0,44.9536233,-123.0249767,0.0,3.0,8009004034,80082.0,0.0,0.0,7935.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.5,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,43487.84,1018.09,1.0,,,90.0,80090.0,1.0,6.0,9.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.998342494587378,0.083,999999.0,5.011,0.151,4.502,9.696,9412.812,177.0,0.0,0.0,0.0 -7550.0,7550,,Block 2007,0,25,PedestrianZones,2300898.031970805,146102.40376135823,10.0,0,0,0.0,0.0,0.0,0.0,,13749.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2007.0,410470003002007.0,1000000US410470003002007,0.0,0.14,80103.0,0.0,172.0,44.9534803,-123.0237915,0.0,3.0,8009402007,80082.0,0.0,0.0,7936.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147965.19,1556.31,1.0,,,94.0,80094.0,1.0,12.0,14.0,0.0,2.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.396810289189284,0.109,999999.0,4.623,0.193,4.492,9.914,9303.608,172.0,0.0,0.0,0.0 -7551.0,7551,,Block 2008,0,25,PedestrianZones,2300860.529296527,146007.22257559057,10.0,0,0,0.0,0.0,0.0,0.0,,14090.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2008.0,410470003002008.0,1000000US410470003002008,0.0,1.0,80103.0,0.0,170.0,44.9526136,-123.0242289,0.0,1.0,8009402008,80082.0,0.0,0.0,7937.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,151628.62,1572.06,1.0,,,94.0,80094.0,1.0,0.0,18.0,0.0,18.0,0.0,0.0,37.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4809110112322723,0.044,999999.0,5.039,0.168,4.591,9.886,9552.353,170.0,0.0,0.0,0.0 -7552.0,7552,,Block 4022,0,25,PedestrianZones,2300864.668737782,146523.13826805152,10.0,0,0,0.0,0.0,0.0,0.0,,14952.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4022.0,410470003004022.0,1000000US410470003004022,0.0,0.91,80103.0,0.0,168.0,44.9572554,-123.0243807,0.0,1.0,8009204022,80417.0,0.0,0.0,7938.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160908.48,1664.62,1.0,,,92.0,80092.0,1.0,2.0,22.0,0.0,20.0,0.0,0.0,48.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.693947141600415,0.215,999999.0,4.003,0.217,4.148,9.131,8406.063,168.0,0.0,0.0,0.0 -7555.0,7555,,Block 1020,0,25,PedestrianZones,2301006.369897993,146266.16679648557,10.0,0,0,0.0,0.0,0.0,0.0,,5000.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1020.0,410470003001020.0,1000000US410470003001020,0.0,0.0,80103.0,0.0,159.0,44.9549838,-123.0224839,0.0,3.0,8009701020,80082.0,0.0,0.0,7941.0,0.0,0.0,0.0,0.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,53811.61,1143.53,1.0,,,97.0,80097.0,1.0,24.0,24.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.2353433972704606,0.067,999999.0,4.399,0.188,4.242,9.501,8895.757,159.0,0.0,0.0,0.0 -7556.0,7556,,Block 2005,0,25,PedestrianZones,2301050.048345488,146124.43775447583,10.0,0,0,0.0,0.0,0.0,0.0,,6691.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2005.0,410470003002005.0,1000000US410470003002005,0.0,0.8599999999999999,80103.0,0.0,158.0,44.9537212,-123.0218745,0.0,1.0,8009502005,80082.0,0.0,0.0,7942.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,72005.2,1185.57,1.0,,,95.0,80095.0,1.0,1.0,7.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6530104133282602,0.097,999999.0,5.026,0.203,4.064,9.009,8982.032,158.0,0.0,0.0,0.0 -7625.0,7625,,Block 2012,0,25,PedestrianZones,2309542.392419792,139172.92907218385,10.0,0,0,0.0,0.0,0.0,0.0,,675033.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80295.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,103,0,2,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22012.0,410470027022012.0,1000000US410470027022012,0.0,0.2899999999999999,80309.0,0.0,18.0,44.8935247,-122.9116621,0.0,3.0,8009622012,80299.0,0.0,0.0,9213.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.91,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,7264626.63,11554.88,1.0,,,96.0,80096.0,1.0,96.0,135.0,0.0,39.0,0.0,0.0,105.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.7727321068629,999999.0,999999.0,0.6,0.0,0.234,0.63,786.699,18.0,0.0,0.0,0.0 -7635.0,7635,,Block 3002,0,25,PedestrianZones,2300273.086181231,147008.87607740084,10.0,0,0,0.0,0.0,0.0,0.0,,18499.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,7,0,0,0,0,5,0,4,0,0,0,0,0,11,25,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3002.0,410470003003002.0,1000000US410470003003002,0.0,0.09,80103.0,0.0,113.0,44.961458,-123.032068,0.0,3.0,8008803002,80417.0,0.0,0.0,9236.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.5,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,199078.36,1851.42,1.0,,,88.0,80088.0,1.0,30.0,33.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.570206157890099,0.189,999999.0,4.893,0.786,2.015,4.277,5868.721,113.0,0.0,0.0,0.0 -7638.0,7638,,Block 3010,0,25,PedestrianZones,2300162.062970241,146867.54049758133,10.0,0,0,0.0,0.0,0.0,0.0,,12363.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,10,0,0,28,0,11,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3010.0,410470003003010.0,1000000US410470003003010,0.0,0.0,80103.0,0.0,106.0,44.9601554,-123.0334185,0.0,3.0,8008603010,80417.0,0.0,0.0,9239.0,0.0,0.0,0.0,0.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,133051.96,1463.18,1.0,,,86.0,80086.0,1.0,30.0,30.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0544499223709063,0.307,999999.0,4.498,0.125,2.073,3.894,5371.404,106.0,0.0,0.0,0.0 -7639.0,7639,,Block 3018,0,25,PedestrianZones,2300158.0454811426,146748.6052502355,10.0,0,0,0.0,0.0,0.0,0.0,,13908.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,6,0,0,0,0,0,37,0,0,0,0,0,0,48,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3018.0,410470003003018.0,1000000US410470003003018,0.0,0.0,80103.0,0.0,104.0,44.9590844,-123.0334221,0.0,3.0,8008603018,80417.0,0.0,0.0,9240.0,0.0,0.0,0.0,0.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,149672.21,1548.23,1.0,,,86.0,80086.0,1.0,48.0,48.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.435998035233736,0.238,999999.0,4.848,0.131,2.02,3.488,5335.009,104.0,0.0,0.0,0.0 -7640.0,7640,,Block 3011,0,25,PedestrianZones,2300268.9790940573,146863.49948554352,10.0,0,0,0.0,0.0,0.0,0.0,,11587.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3011.0,410470003003011.0,1000000US410470003003011,0.0,0.9,80103.0,0.0,120.0,44.9601492,-123.0320623,0.0,1.0,8008803011,80417.0,0.0,0.0,9241.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,124695.93,1412.45,1.0,,,88.0,80088.0,1.0,1.0,10.0,0.0,9.0,0.0,0.0,10.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8626222387131626,0.239,999999.0,4.651,0.219,2.272,4.613,5928.965,120.0,0.0,0.0,0.0 -7641.0,7641,,Block 3016,0,25,PedestrianZones,2300289.897485494,146743.1175777422,10.0,0,0,0.0,0.0,0.0,0.0,,6571.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3016.0,410470003003016.0,1000000US410470003003016,0.0,0.5799999999999998,80103.0,0.0,124.0,44.9590722,-123.0317495,0.0,2.0,8008803016,80417.0,0.0,0.0,9242.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.63,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,70719.71,1169.28,1.0,,,88.0,80088.0,1.0,5.0,12.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6234998144496198,0.172,999999.0,4.28,0.128,2.268,4.159,5400.784,124.0,0.0,0.0,0.0 -7642.0,7642,,Block 3001,0,25,PedestrianZones,2300376.4189115926,147006.04822474893,10.0,0,0,0.0,0.0,0.0,0.0,,18288.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,203,0,6,0,0,0,0,0,0,530,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3001.0,410470003003001.0,1000000US410470003003001,0.0,0.8,80103.0,0.0,120.0,44.9614617,-123.0307578,0.0,1.0,8008803001,80417.0,0.0,0.0,9243.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.14,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,196815.76,1838.67,1.0,,,88.0,80088.0,1.0,5.0,25.0,0.0,20.0,0.0,0.0,35.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.518264048254959,0.189,999999.0,4.893,0.786,2.015,4.277,5868.721,120.0,0.0,0.0,0.0 -7645.0,7645,,Block 3015,0,25,PedestrianZones,2300367.679141623,146740.40742679432,10.0,0,0,0.0,0.0,0.0,0.0,,13214.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3015.0,410470003003015.0,1000000US410470003003015,0.0,1.0,80103.0,0.0,140.0,44.9590698,-123.030763,0.0,1.0,8008803015,80417.0,0.0,0.0,9246.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142210.13,1516.71,1.0,,,88.0,80088.0,1.0,0.0,18.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.264692418239345,0.106,999999.0,4.018,0.131,2.53,4.952,5740.83,140.0,0.0,0.0,0.0 -7646.0,7646,,Block 3014,0,25,PedestrianZones,2300477.3529064613,146737.3180492188,10.0,0,0,1.64,0.0,0.0,0.0,,14938.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3014.0,410470003003014.0,1000000US410470003003014,4.26,0.88,80103.0,0.0,149.0,44.9590729,-123.0293724,0.0,1.0,8008803014,80417.0,0.0,0.0,9247.0,0.0,1.64,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.13,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160754.25,1605.78,1.0,,,88.0,80088.0,1.0,1.0,8.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.690406518963252,0.0,999999.0,3.988,0.142,3.35,6.919,6980.754,149.0,0.0,0.0,0.0 -7647.0,7647,,Block 4005,0,25,PedestrianZones,2300596.6047383305,146931.760469212,10.0,0,0,0.0,0.0,0.0,0.0,,8039.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4005.0,410470003004005.0,1000000US410470003004005,0.0,0.0,80103.0,0.0,141.0,44.9608555,-123.0279387,0.0,1.0,8009304005,80417.0,0.0,0.0,9248.0,0.0,0.0,0.0,0.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,86518.69,1278.16,1.0,,,93.0,80093.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.986194098698572,0.072,999999.0,3.193,0.115,2.782,6.111,5954.44,141.0,0.0,0.0,0.0 -7648.0,7648,,Block 4006,0,25,PedestrianZones,2300686.3498391667,146907.89611931337,10.0,0,0,0.0,0.0,0.0,0.0,,12284.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4006.0,410470003004006.0,1000000US410470003004006,0.0,0.91,80103.0,0.0,146.0,44.9606661,-123.0267922,0.0,1.0,8009304006,80417.0,0.0,0.0,9249.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132202.73,1448.3,1.0,,,93.0,80093.0,1.0,1.0,11.0,0.0,10.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0349544956061534,0.125,999999.0,4.277,1.523,3.138,7.276,7394.14,146.0,0.0,0.0,0.0 -7649.0,7649,,Block 3019,0,25,PedestrianZones,2300154.050303024,146628.8348004482,10.0,0,0,0.0,0.0,0.0,0.0,,12139.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3019.0,410470003003019.0,1000000US410470003003019,0.0,0.0,80103.0,0.0,112.0,44.958006,-123.0334251,0.0,3.0,8008603019,80417.0,0.0,0.0,9250.0,0.0,0.0,0.0,0.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,130638.92,1447.52,1.0,,,86.0,80086.0,1.0,22.0,22.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9990542415625048,0.202,999999.0,4.627,0.124,2.127,3.704,5331.74,112.0,0.0,0.0,0.0 -7650.0,7650,,Block 3025,0,25,PedestrianZones,2300256.004515341,146516.84956170915,10.0,0,0,0.0,0.0,0.0,0.0,,10627.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,15,0,4,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3025.0,410470003003025.0,1000000US410470003003025,0.0,0.13,80103.0,0.0,132.0,44.9570274,-123.032089,0.0,3.0,8008803025,80417.0,0.0,0.0,9251.0,0.0,0.0,0.0,0.0,,,,0,0.0,6.5,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114363.07,1359.03,1.0,,,88.0,80088.0,1.0,13.0,15.0,0.0,2.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.625412400131208,0.268,999999.0,5.093,0.121,2.392,4.204,5950.595,132.0,0.0,0.0,0.0 -7651.0,7651,,Block 3021,0,25,PedestrianZones,2300362.77437912,146621.74756370613,10.0,0,0,0.0,0.0,0.0,0.0,,11403.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3021.0,410470003003021.0,1000000US410470003003021,0.0,1.0,80103.0,0.0,142.0,44.9580011,-123.0307781,0.0,1.0,8008803021,80417.0,0.0,0.0,9252.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,122711.61,1401.74,1.0,,,88.0,80088.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8170684805539365,0.071,999999.0,3.92,0.142,2.591,4.919,5656.847,142.0,0.0,0.0,0.0 -7652.0,7652,,Block 3027,0,25,PedestrianZones,2300250.524686913,146439.36252091455,10.0,0,0,0.0,0.0,0.0,0.0,,5037.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3027.0,410470003003027.0,1000000US410470003003027,0.0,0.0,80103.0,0.0,137.0,44.9563289,-123.0321277,0.0,3.0,8008903027,80417.0,0.0,0.0,9253.0,0.0,0.0,0.0,0.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,54208.73,997.26,1.0,,,89.0,80089.0,2.0,33.0,33.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.244460040375436,0.275,999999.0,5.093,0.121,2.392,4.204,5950.595,137.0,0.0,0.0,0.0 -7653.0,7653,,Block 3037,0,25,PedestrianZones,2300234.788603211,146145.93651577347,10.0,0,0,0.0,0.0,0.0,0.0,,10494.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3037.0,410470003003037.0,1000000US410470003003037,0.0,0.7199999999999999,80103.0,0.0,136.0,44.9536851,-123.0322105,0.0,1.0,8008903037,80068.0,0.0,0.0,9254.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.27,0.6999999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112932.58,1343.87,1.0,,,89.0,80089.0,2.0,8.0,29.0,0.0,21.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.592573083428377,0.123,999999.0,5.838,0.219,2.718,5.279,7114.746,136.0,0.0,0.0,0.0 -7654.0,7654,,Block 3028,0,25,PedestrianZones,2300346.4763054457,146420.4670466208,10.0,0,0,0.0,0.0,0.0,0.0,,8520.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3028.0,410470003003028.0,1000000US410470003003028,0.0,0.0,80103.0,0.0,151.0,44.956186,-123.0309046,0.0,1.0,8008903028,80417.0,0.0,0.0,9255.0,0.0,0.0,0.0,0.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,91694.69,1222.77,1.0,,,89.0,80089.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.105018545477583,0.275,999999.0,5.093,0.121,2.392,4.204,5950.595,151.0,0.0,0.0,0.0 -7655.0,7655,,Block 3029,0,25,PedestrianZones,2300452.2375574075,146405.9708959824,10.0,0,0,0.0,0.0,0.0,0.0,,13886.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3029.0,410470003003029.0,1000000US410470003003029,0.0,0.67,80103.0,0.0,159.0,44.9560854,-123.0295591,0.0,1.0,8008903029,80417.0,0.0,0.0,9256.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2899999999999999,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,149436.9,1712.46,1.0,,,89.0,80089.0,2.0,9.0,27.0,0.0,18.0,0.0,0.0,31.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4305960288920865,0.0,999999.0,6.84,0.213,3.92,7.803,9371.405,159.0,0.0,0.0,0.0 -7656.0,7656,,Block 3043,0,25,PedestrianZones,2300161.695597036,145956.09180249288,10.0,0,0,0.0,0.0,0.0,0.0,,9945.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3043.0,410470003003043.0,1000000US410470003003043,0.0,0.0,80103.0,0.0,133.0,44.9519569,-123.033061,0.0,3.0,8008903043,80068.0,0.0,0.0,9257.0,0.0,0.0,0.0,0.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,107023.17,1308.31,1.0,,,89.0,80089.0,2.0,9.0,9.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.456911630627016,0.123,999999.0,8.941,0.501,2.905,6.122,9640.063,133.0,0.0,0.0,0.0 -7657.0,7657,,Block 3041,0,25,PedestrianZones,2300293.5137267094,146013.0001333895,10.0,0,0,0.0,0.0,0.0,0.0,,10753.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,4,0,0,0,0,5,0,0,0,0,0,16,0,0,19,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3041.0,410470003003041.0,1000000US410470003003041,0.0,0.22,80103.0,0.0,147.0,44.952506,-123.0314138,0.0,3.0,8008903041,80068.0,0.0,0.0,9258.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.25,0.92,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,115718.35,1361.19,1.0,,,89.0,80089.0,2.0,39.0,50.0,0.0,11.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.656525500574046,0.061,999999.0,7.156,0.231,3.465,7.254,9222.487,147.0,0.0,0.0,0.0 -7658.0,7658,,Block 3022,0,25,PedestrianZones,2300473.259495448,146620.94880319948,10.0,0,0,0.0,0.0,0.0,0.0,,12269.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3022.0,410470003003022.0,1000000US410470003003022,0.0,0.89,80103.0,0.0,153.0,44.958025,-123.0293781,0.0,1.0,8008803022,80417.0,0.0,0.0,9259.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132035.15,1458.53,1.0,,,88.0,80088.0,1.0,2.0,19.0,0.0,17.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0311072775952885,0.033,999999.0,4.355,0.157,3.035,5.903,6565.588,153.0,0.0,0.0,0.0 -7659.0,7659,,Block 3023,0,25,PedestrianZones,2300465.779203182,146517.77331416644,10.0,0,0,0.0,0.0,0.0,0.0,,11583.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3023.0,410470003003023.0,1000000US410470003003023,0.0,1.0,80103.0,0.0,160.0,44.9570949,-123.0294319,0.0,1.0,8008803023,80417.0,0.0,0.0,9260.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,124652.81,1409.83,1.0,,,88.0,80088.0,1.0,0.0,31.0,0.0,31.0,0.0,0.0,53.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8616321162800977,0.054,999999.0,5.132,0.206,3.841,7.504,8087.259,160.0,0.0,0.0,0.0 -7660.0,7660,,Block 4017,0,25,PedestrianZones,2300599.230695396,146749.3810539866,10.0,0,0,0.0,0.0,0.0,0.0,,37621.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0.0,263.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4017.0,410470003004017.0,1000000US410470003004017,0.0,0.16,80103.0,0.0,158.0,44.9592157,-123.0278331,0.0,3.0,8009204017,80417.0,0.0,0.0,9261.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.3,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,404872.37,3346.24,1.0,,,92.0,80092.0,1.0,46.0,55.0,0.0,9.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.294582389758514,0.045,999999.0,4.137,0.138,3.105,6.078,6537.878,158.0,0.0,0.0,0.0 -7661.0,7661,,Block 4018,0,25,PedestrianZones,2300537.842890046,146352.46267427536,10.0,0,0,0.0,0.0,0.0,0.0,,10935.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4018.0,410470003004018.0,1000000US410470003004018,0.0,1.0,80103.0,0.0,167.0,44.9556282,-123.0284534,0.0,1.0,8009104018,80082.0,0.0,0.0,9262.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117679.36,1372.38,1.0,,,91.0,80091.0,1.0,0.0,35.0,0.0,35.0,0.0,0.0,86.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7015439069619798,0.067,999999.0,3.652,0.156,4.237,8.823,7984.003,167.0,0.0,0.0,0.0 -7662.0,7662,,Block 4030,0,25,PedestrianZones,2300465.6506992583,146164.77839169872,10.0,0,0,0.0,0.0,0.0,0.0,,10698.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4030.0,410470003004030.0,1000000US410470003004030,0.0,0.2,80103.0,0.0,170.0,44.9539197,-123.0292935,0.0,3.0,8009104030,80082.0,0.0,0.0,9263.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.67,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115127.49,1357.15,1.0,,,91.0,80091.0,1.0,16.0,20.0,0.0,4.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.642961154315427,0.125,999999.0,6.014,0.192,3.934,8.368,9204.469,170.0,0.0,0.0,0.0 -7663.0,7663,,Block 4019,0,25,PedestrianZones,2300632.838246212,146314.02139436803,10.0,0,0,0.0,0.0,0.0,0.0,,9834.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4019.0,410470003004019.0,1000000US410470003004019,0.0,1.0,80103.0,0.0,176.0,44.9553092,-123.0272347,0.0,1.0,8009104019,80082.0,0.0,0.0,9264.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105830.31,1301.64,1.0,,,91.0,80091.0,1.0,0.0,7.0,0.0,7.0,0.0,0.0,13.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.429527498441579,0.128,999999.0,4.697,0.162,4.262,9.012,8773.359,176.0,0.0,0.0,0.0 -7664.0,7664,,Block 4027,0,25,PedestrianZones,2300690.2491492704,146183.705000221,10.0,0,0,0.0,0.0,0.0,0.0,,10609.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4027.0,410470003004027.0,1000000US410470003004027,0.0,1.0,80103.0,0.0,184.0,44.9541532,-123.0264558,0.0,1.0,8009104027,80082.0,0.0,0.0,9265.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114174.5,1352.85,1.0,,,91.0,80091.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6210834483343626,0.18,999999.0,4.997,0.147,4.367,9.452,9247.701,184.0,0.0,0.0,0.0 -7665.0,7665,,Block 4032,0,25,PedestrianZones,2300651.4441438112,146090.650281156,10.0,0,0,0.0,0.0,0.0,0.0,,10035.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4032.0,410470003004032.0,1000000US410470003004032,0.0,0.63,80103.0,0.0,179.0,44.9533052,-123.0269105,0.0,1.0,8009104032,80082.0,0.0,0.0,9266.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4299999999999999,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107998.26,1347.27,1.0,,,91.0,80091.0,1.0,3.0,8.0,0.0,5.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.47929677418288,0.161,999999.0,6.442,0.144,4.563,10.069,10567.467,179.0,0.0,0.0,0.0 -7666.0,7666,,Block 4041,0,25,PedestrianZones,2300487.308498985,145938.40930185356,10.0,0,0,0.0,0.0,0.0,0.0,,10001.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,70,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4041.0,410470003004041.0,1000000US410470003004041,0.0,0.0,80103.0,0.0,159.0,44.9518896,-123.0289293,0.0,3.0,8009004041,80082.0,0.0,0.0,9267.0,0.0,0.0,0.0,0.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,107624.68,1313.0,1.0,,,90.0,80090.0,1.0,90.0,90.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4707205020272505,0.183,999999.0,6.34,0.186,4.031,8.56,9535.61,159.0,0.0,0.0,0.0 -7670.0,7670,,Block 4002,0,25,PedestrianZones,2300786.248915334,147025.3216372844,10.0,0,0,0.0,0.0,0.0,0.0,,10432.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4002.0,410470003004002.0,1000000US410470003004002,0.0,1.0,80103.0,0.0,136.0,44.9617504,-123.0255731,0.0,1.0,8009304002,80417.0,0.0,0.0,9271.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112269.9,1344.16,1.0,,,93.0,80093.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,27.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.577359957528933,0.0,999999.0,4.174,1.376,2.565,6.23,6658.009,136.0,0.0,0.0,0.0 -7671.0,7671,,Block 4012,0,25,PedestrianZones,2300776.5883240583,146785.4159490655,10.0,0,0,0.0,0.0,0.0,0.0,,10511.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4012.0,410470003004012.0,1000000US410470003004012,0.0,0.81,80103.0,0.0,164.0,44.9595898,-123.0256004,0.0,1.0,8009304012,80417.0,0.0,0.0,9272.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113121.74,1345.2,1.0,,,93.0,80093.0,1.0,4.0,21.0,0.0,17.0,0.0,0.0,42.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.596915521592809,0.222,999999.0,3.349,0.163,4.047,8.971,7884.955,164.0,0.0,0.0,0.0 -7673.0,7673,,Block 4000,0,25,PedestrianZones,2300980.6996746226,147017.87375726263,10.0,0,0,0.0,0.0,0.0,0.0,,11108.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4000.0,410470003004000.0,1000000US410470003004000,0.0,1.0,80103.0,0.0,128.0,44.9617381,-123.0231066,0.0,1.0,8009304000,80417.0,0.0,0.0,9274.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119538.91,1380.01,1.0,,,93.0,80093.0,1.0,0.0,3.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7442334340496,0.07,999999.0,3.48,1.504,2.852,7.048,6738.379,128.0,0.0,0.0,0.0 -7721.0,7721,,Block 3003,0,25,PedestrianZones,2301752.21982346,144873.3939411664,10.0,0,0,0.0,0.0,0.0,0.0,,12588.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3003.0,410470006003003.0,1000000US410470006003003,0.0,1.0,80103.0,0.0,136.0,44.942665,-123.0124866,0.0,1.0,8010503003,80082.0,0.0,0.0,9332.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,135464.53,1717.13,1.0,,,105.0,80105.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1098349603168813,0.145,999999.0,2.655,0.087,3.944,8.635,7225.2,136.0,0.0,0.0,0.0 -7740.0,7740,,Block 2003,0,25,PedestrianZones,2300946.0512446724,146187.0140842838,10.0,0,0,0.0,0.0,0.0,0.0,,11112.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,4,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2003.0,410470003002003.0,1000000US410470003002003,0.0,0.7199999999999999,80103.0,0.0,162.0,44.9542549,-123.0232167,0.0,1.0,8009402003,80082.0,0.0,0.0,9407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1799999999999999,0.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119584.53,1424.45,1.0,,,94.0,80094.0,1.0,5.0,18.0,0.0,13.0,0.0,0.0,28.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.745280516271955,0.109,999999.0,4.623,0.193,4.492,9.914,9303.608,162.0,0.0,0.0,0.0 -7744.0,7744,,Block 4004,0,25,PedestrianZones,2300595.466126713,147031.8029309629,10.0,0,0,0.0,0.0,0.0,0.0,,10809.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4004.0,410470003004004.0,1000000US410470003004004,0.0,0.53,80103.0,0.0,127.0,44.961755,-123.0279928,0.0,2.0,8009304004,80417.0,0.0,0.0,9420.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.45,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116318.83,1368.07,1.0,,,93.0,80093.0,1.0,9.0,19.0,0.0,10.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6703105708696424,0.0,999999.0,4.658,1.509,2.462,5.563,6541.86,127.0,0.0,0.0,0.0 -7745.0,7745,,Block 3040,0,25,PedestrianZones,2300197.862602576,146050.90186240544,10.0,0,0,0.0,0.0,0.0,0.0,,10224.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3040.0,410470003003040.0,1000000US410470003003040,0.0,0.95,80103.0,0.0,135.0,44.9528199,-123.0326405,0.0,1.0,8008903040,80068.0,0.0,0.0,9421.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,110027.49,1328.08,1.0,,,89.0,80089.0,2.0,1.0,19.0,0.0,18.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5258813230103114,0.185,999999.0,8.132,0.512,2.854,5.637,8812.038,135.0,0.0,0.0,0.0 -7746.0,7746,,Block 4038,0,25,PedestrianZones,2300522.4448497263,146032.82473714696,10.0,0,0,0.0,0.0,0.0,0.0,,9940.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4038.0,410470003004038.0,1000000US410470003004038,0.0,0.78,80103.0,0.0,165.0,44.9527488,-123.0285217,0.0,1.0,8009104038,80082.0,0.0,0.0,9422.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.17,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106967.29,1308.18,1.0,,,91.0,80091.0,1.0,2.0,9.0,0.0,7.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.455628806730652,0.124,999999.0,6.016,0.205,4.157,9.114,9682.938,165.0,0.0,0.0,0.0 -7786.0,7786,,Block 2022,0,25,PedestrianZones,2301900.766109793,145071.9335141002,10.0,0,0,0.0,0.0,0.0,0.0,,12463.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2022.0,410470006002022.0,1000000US410470006002022,0.0,1.0,80103.0,0.0,145.0,44.9444924,-123.0106834,0.0,1.0,8010002022,80082.0,0.0,0.0,9510.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,134124.73,1466.85,1.0,,,100.0,80100.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.079077480328716,0.257,999999.0,2.605,0.136,3.505,7.961,6762.494,145.0,0.0,0.0,0.0 -7926.0,7926,,Block 1005,0,25,PedestrianZones,2299677.3554714783,145908.73795772434,10.0,0,0,0.0,0.0,0.0,0.0,,0.0,70521.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1005.0,410470002001005.0,1000000US410470002001005,0.0,0.0,80103.0,0.0,102.0,44.9513942,-123.0391773,0.0,1.0,8008701005,80068.0,0.0,0.0,15098.0,0.0,0.0,0.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,758930.91,7339.59,1.0,,,87.0,80087.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,17.422641038883054,0.253,999999.0,9.755,0.626,1.991,4.001,8803.519,102.0,0.0,0.0,0.0 -7927.0,7927,,Block 3009,0,25,PedestrianZones,2299836.5669474835,146867.51510310423,10.0,0,0,0.0,0.0,0.0,0.0,,64078.0,113917.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3009.0,410470003003009.0,1000000US410470003003009,0.0,0.0,80103.0,0.0,60.0,44.9620172,-123.0371696,0.0,1.0,8008703009,80417.0,0.0,0.0,15099.0,0.0,11.18,0.0,1.0,SPECIAL USE FACILITY,,,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,1915536.78,13439.06,1.0,,,87.0,80087.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,43.97463472480091,0.362,999999.0,5.032,0.122,1.575,2.601,4885.171,60.0,0.0,0.0,0.0 -7929.0,7929,,Block 3005,0,25,PedestrianZones,2300049.591243483,146632.7057474841,10.0,0,0,0.0,0.0,0.0,0.0,,11136.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3005.0,410470003003005.0,1000000US410470003003005,0.0,0.25,80103.0,0.0,92.0,44.9580113,-123.03475,0.0,3.0,8008603005,80417.0,0.0,0.0,15101.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.57,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119846.23,1386.62,1.0,,,86.0,80086.0,1.0,18.0,24.0,0.0,6.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.751288490240141,0.269,999999.0,4.44,0.106,1.953,3.361,4992.118,92.0,0.0,0.0,0.0 -7959.0,7959,,Block 6013,0,25,PedestrianZones,2300914.9787262287,144356.84200404017,10.0,0,0,0.0,0.0,0.0,0.0,,13098.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6013.0,410470009006013.0,1000000US410470009006013,0.0,0.97,80103.0,0.0,149.0,44.9377839,-123.0228861,0.0,1.0,8010606013,80068.0,0.0,0.0,15134.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.53,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,140957.62,1514.2,1.0,,,106.0,80106.0,1.0,1.0,30.0,0.0,29.0,0.0,0.0,55.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2359388105188462,0.218,999999.0,22.417,0.487,4.102,7.655,19245.713,149.0,0.0,0.0,0.0 -7960.0,7960,,Block 6012,0,25,PedestrianZones,2301071.6545911487,144293.131261574,10.0,0,0,0.0,0.0,0.0,0.0,,31234.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6012.0,410470009006012.0,1000000US410470009006012,0.0,0.5899999999999999,80103.0,0.0,162.0,44.9372548,-123.0208767,0.0,2.0,8010606012,80082.0,0.0,0.0,15135.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.3499999999999999,0.4899999999999999,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,336137.99,2420.19,1.0,,,106.0,80106.0,1.0,29.0,70.0,0.0,41.0,0.0,0.0,84.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.716659629313921,0.141,999999.0,6.757,0.115,5.361,10.518,11055.895,162.0,0.0,0.0,0.0 -7961.0,7961,,Block 6005,0,25,PedestrianZones,2301127.819982928,144467.4906101794,10.0,0,0,0.0,0.0,0.0,0.0,,29721.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6005.0,410470009006005.0,1000000US410470009006005,0.0,0.87,80103.0,0.0,160.0,44.938839,-123.0202343,0.0,1.0,8010606005,80082.0,0.0,0.0,15136.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,319856.68,2895.68,1.0,,,106.0,80106.0,1.0,4.0,30.0,0.0,26.0,0.0,0.0,44.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.342892524024358,0.085,999999.0,7.878,0.529,4.808,9.176,10914.675,160.0,0.0,0.0,0.0 -7965.0,7965,,Block 6011,0,25,PedestrianZones,2301237.6114868005,144229.2765325738,10.0,0,0,0.0,0.0,0.0,0.0,,14853.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6011.0,410470009006011.0,1000000US410470009006011,0.0,0.95,80103.0,0.0,167.0,44.936727,-123.0187498,0.0,1.0,8010806011,80082.0,0.0,0.0,15140.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159853.81,1602.75,1.0,,,108.0,80108.0,1.0,1.0,20.0,0.0,19.0,0.0,0.0,31.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.669735352266689,0.211,999999.0,4.686,0.126,5.253,10.52,9731.41,167.0,0.0,0.0,0.0 -7990.0,7990,,Block 2005,0,25,PedestrianZones,2301453.4393600128,145498.81188539896,10.0,0,0,0.0,0.0,0.0,0.0,,28277.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.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.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2005.0,410470006002005.0,1000000US410470006002005,0.0,0.5899999999999999,80103.0,0.0,142.0,44.9482069,-123.0165175,0.0,2.0,8010202005,80082.0,0.0,0.0,15166.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.31,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,304315.81,2297.32,1.0,,,102.0,80102.0,1.0,9.0,22.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.986123622447123,0.067,999999.0,1.564,0.163,4.615,10.421,7670.173,142.0,0.0,0.0,0.0 -7991.0,7991,,Block 1031,0,25,PedestrianZones,2301571.5990925888,145641.53029989827,10.0,0,0,0.0,0.0,0.0,0.0,,49672.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,13,24,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1031.0,410470006001031.0,1000000US410470006001031,0.0,0.7299999999999999,80103.0,0.0,137.0,44.9495238,-123.0150771,0.0,1.0,8009801031,80082.0,0.0,0.0,15167.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,534565.86,3046.71,1.0,,,98.0,80098.0,1.0,28.0,102.0,0.0,74.0,0.0,0.0,174.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.271932575803444,0.133,999999.0,1.863,0.242,4.608,10.439,7873.571,137.0,0.0,0.0,0.0 -7993.0,7993,,Block 6027,0,25,PedestrianZones,2301444.357036276,144007.5705294975,10.0,0,0,0.0,0.0,0.0,0.0,,23329.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,1,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,49,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6027.0,410470009006027.0,1000000US410470009006027,0.0,0.2099999999999999,80103.0,0.0,156.0,44.9347908,-123.0160441,0.0,3.0,8010806027,80082.0,0.0,0.0,15169.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.38,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,251063.78,2071.84,1.0,,,108.0,80108.0,1.0,38.0,48.0,0.0,10.0,0.0,0.0,16.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.7636262370047,0.148,999999.0,3.401,0.102,4.838,10.403,8835.005,156.0,0.0,0.0,0.0 -8293.0,8293,,Block 2005,0,25,PedestrianZones,2299651.4877132,145423.00326157355,10.0,0,0,0.0,0.0,0.0,0.0,,8282.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2005.0,410470002002005.0,1000000US410470002002005,0.0,0.0,80103.0,0.0,111.0,44.9470177,-123.0393116,0.0,3.0,8006102005,80068.0,0.0,0.0,27876.0,0.0,0.0,0.0,0.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,89120.55,1262.11,1.0,,,61.0,80061.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.045924578762361,0.267,999999.0,14.676,2.056,1.228,2.135,10759.008,111.0,0.0,0.0,0.0 -8294.0,8294,,Block 2011,0,25,PedestrianZones,2299570.336215656,145164.96625789016,10.0,0,0,0.0,0.0,0.0,0.0,,2102.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2011.0,410470002002011.0,1000000US410470002002011,0.0,0.0,80103.0,0.0,112.0,44.9446738,-123.0402366,0.0,1.0,8006102011,80068.0,0.0,0.0,27877.0,0.0,0.0,0.0,0.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,22623.28,965.19,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.5193586831039588,0.397,999999.0,7.523,0.529,0.4,0.617,5210.141,112.0,0.0,0.0,0.0 -8299.0,8299,,Block 3022,0,25,PedestrianZones,2300630.8041308997,144646.9451237882,10.0,0,0,0.0,0.0,0.0,0.0,,10314.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,32,0,0,0,0,0,0,3,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3022.0,410470002003022.0,1000000US410470002003022,0.0,0.0,80103.0,0.0,127.0,44.9403135,-123.0265998,0.0,3.0,8008003022,80068.0,0.0,0.0,27883.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.0,0.0,1.0,110995.07,1468.68,1.0,,,80.0,80080.0,2.0,49.0,49.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.548094043404603,0.118,999999.0,45.587,0.517,3.255,6.026,33032.105,127.0,0.2060775506119679,3.378588256394685,0.90581605076202 -8308.0,8308,,Block 3017,0,25,PedestrianZones,2300238.2123355805,146744.92458286195,10.0,0,0,0.0,0.0,0.0,0.0,,6456.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3017.0,410470003003017.0,1000000US410470003003017,0.0,1.0,80103.0,0.0,115.0,44.9590739,-123.032405,0.0,1.0,8008803017,80417.0,0.0,0.0,27892.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8299999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,69481.76,1163.51,1.0,,,88.0,80088.0,1.0,0.0,5.0,0.0,5.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5950802332316578,0.238,999999.0,4.848,0.131,2.02,3.488,5335.009,115.0,0.0,0.0,0.0 -8395.0,8395,,Block 3042,0,25,PedestrianZones,2300256.008936468,145918.87173776244,10.0,0,0,0.0,0.0,0.0,0.0,,10378.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,4,0,44,0,0,0,0,0,0,36,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3042.0,410470003003042.0,1000000US410470003003042,0.0,0.5,80103.0,0.0,145.0,44.9516487,-123.0318515,0.0,3.0,8008903042,80068.0,0.0,0.0,28070.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.45,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111682.43,1337.33,1.0,,,89.0,80089.0,2.0,61.0,122.0,0.0,61.0,0.0,0.0,136.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.563873541489753,0.0,999999.0,8.141,0.258,3.663,7.637,10098.045,145.0,0.0,0.0,0.0 -8396.0,8396,,Block 1014,0,25,PedestrianZones,2300219.340889969,145826.08633717743,10.0,0,0,0.0,0.0,0.0,0.0,,10108.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,8,8,84,17,0,0,3,0,305,2,0,0,5,0,0,693,19,31,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1014.0,410470002001014.0,1000000US410470002001014,0.0,0.05,80103.0,0.0,144.0,44.9508038,-123.0322791,0.0,3.0,8008501014,80068.0,0.0,0.0,28071.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.78,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108783.14,1319.8,1.0,,,85.0,80085.0,2.0,529.0,555.0,0.0,26.0,0.0,0.0,68.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.497314982155794,0.042,999999.0,9.957,0.474,3.032,6.137,10300.347,144.0,0.0,0.0,0.0 -8397.0,8397,,Block 4045,0,25,PedestrianZones,2300449.924003187,145844.4570703781,10.0,0,0,0.0,0.0,0.0,0.0,,9928.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4045.0,410470003004045.0,1000000US410470003004045,0.0,1.0,80103.0,0.0,159.0,44.951034,-123.0293656,0.0,1.0,8009004045,80082.0,0.0,0.0,28072.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106842.59,1303.34,1.0,,,90.0,80090.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.452766282627974,0.125,999999.0,7.319,0.212,3.794,7.751,9645.239,159.0,0.0,0.0,0.0 -8398.0,8398,,Block 1022,0,25,PedestrianZones,2300278.341373857,145691.03340896923,10.0,0,0,0.0,0.0,0.0,0.0,,11244.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1022.0,410470002001022.0,1000000US410470002001022,0.0,0.4299999999999999,80103.0,0.0,148.0,44.9496056,-123.0314781,0.0,3.0,8008401022,80068.0,0.0,0.0,28073.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,121004.87,1387.09,1.0,,,84.0,80084.0,2.0,12.0,21.0,0.0,9.0,0.0,0.0,23.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.777887164316911,0.064,999999.0,9.37,0.473,3.459,6.786,10339.585,148.0,0.0,0.0,0.0 -8399.0,8399,,Block 1016,0,25,PedestrianZones,2300411.9319460564,145751.11973260072,10.0,0,0,0.0,0.0,0.0,0.0,,9885.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1016.0,410470002001016.0,1000000US410470002001016,0.0,1.0,80103.0,0.0,156.0,44.9501838,-123.0298098,0.0,1.0,8008401016,80082.0,0.0,0.0,28074.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106382.93,1314.32,1.0,,,84.0,80084.0,2.0,0.0,14.0,0.0,14.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4422139022068605,0.123,999999.0,7.692,0.255,3.972,7.919,9990.636,156.0,0.0,0.0,0.0 -8400.0,8400,,Block 1021,0,25,PedestrianZones,2300374.0510093253,145653.688246197,10.0,0,0,0.0,0.0,0.0,0.0,,11218.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1021.0,410470002001021.0,1000000US410470002001021,0.0,1.0,80103.0,0.0,153.0,44.9492967,-123.030251,0.0,1.0,8008401021,80068.0,0.0,0.0,28075.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,120729.79,1383.95,1.0,,,84.0,80084.0,2.0,0.0,12.0,0.0,12.0,0.0,0.0,29.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.771572266131872,0.124,999999.0,12.914,0.263,4.082,7.926,13337.944,153.0,0.0,0.0,0.0 -8401.0,8401,,Block 1034,0,25,PedestrianZones,2300331.716022715,145406.709459896,10.0,0,0,0.0,0.0,0.0,0.0,,21342.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1034.0,410470002001034.0,1000000US410470002001034,0.0,0.98,80103.0,0.0,153.0,44.9470632,-123.0306892,0.0,1.0,8008401034,80068.0,0.0,0.0,28076.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,229681.9,1962.16,1.0,,,84.0,80084.0,2.0,1.0,46.0,0.0,45.0,0.0,0.0,113.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.27276617142066,0.127,999999.0,26.424,0.214,3.633,7.056,21427.629,153.0,0.0,0.0,0.0 -8402.0,8402,,Block 4044,0,25,PedestrianZones,2300543.349108147,145808.36774927867,10.0,0,0,0.0,0.0,0.0,0.0,,10370.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4044.0,410470003004044.0,1000000US410470003004044,0.0,1.0,80103.0,0.0,161.0,44.9507357,-123.0281679,0.0,1.0,8009004044,80082.0,0.0,0.0,28077.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111596.1,1335.96,1.0,,,90.0,80090.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.561891735209873,0.182,999999.0,6.82,0.243,4.392,8.886,10052.375,161.0,0.0,0.0,0.0 -8403.0,8403,,Block 1017,0,25,PedestrianZones,2300506.4225199814,145713.95995769196,10.0,0,0,0.0,0.0,0.0,0.0,,10260.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1017.0,410470002001017.0,1000000US410470002001017,0.0,1.0,80103.0,0.0,159.0,44.9498761,-123.0285982,0.0,1.0,8008401017,80082.0,0.0,0.0,28078.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,110410.77,1329.24,1.0,,,84.0,80084.0,2.0,0.0,11.0,0.0,11.0,0.0,0.0,27.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5346803457467657,0.121,999999.0,11.473,0.203,3.94,8.001,12463.476,159.0,0.0,0.0,0.0 -8404.0,8404,,Block 4036,0,25,PedestrianZones,2300626.6351964446,145984.40563327816,10.0,0,0,0.0,0.0,0.0,0.0,,7005.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4036.0,410470003004036.0,1000000US410470003004036,0.0,1.0,80103.0,0.0,170.0,44.9523426,-123.0271827,0.0,1.0,8009004036,80082.0,0.0,0.0,28079.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,75388.86999999998,1170.21,1.0,,,90.0,80090.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.7306886958639964,0.168,999999.0,5.753,0.216,4.515,9.989,10074.817,170.0,0.0,0.0,0.0 -8405.0,8405,,Block 4043,0,25,PedestrianZones,2300656.6606186386,145816.51452513965,10.0,0,0,1.01,0.0,0.0,0.0,,20768.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,67,0,0,2,0,0,0,0,0,0,0,0,90,0,0,0.0,444.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4043.0,410470003004043.0,1000000US410470003004043,0.0,0.0,80103.0,0.0,164.0,44.9508409,-123.0267358,0.0,3.0,8009004043,80082.0,0.0,0.0,28080.0,0.0,1.01,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,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,223503.24,2003.09,1.0,,,90.0,80090.0,1.0,62.0,62.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.130923810617835,0.182,999999.0,6.82,0.243,4.392,8.886,10052.375,164.0,0.0,0.0,0.0 -8406.0,8406,,Block 1020,0,25,PedestrianZones,2300470.6671977327,145614.64826815386,10.0,0,0,0.0,0.0,0.0,0.0,,11980.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1020.0,410470002001020.0,1000000US410470002001020,0.0,1.0,80103.0,0.0,153.0,44.9489728,-123.0290117,0.0,1.0,8008401020,80082.0,0.0,0.0,28081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128924.69,1436.86,1.0,,,84.0,80084.0,2.0,0.0,17.0,0.0,17.0,0.0,0.0,48.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9597009613794154,0.059,999999.0,14.343,0.284,4.105,8.113,14372.151,153.0,0.0,0.0,0.0 -8407.0,8407,,Block 1031,0,25,PedestrianZones,2300432.3013338754,145512.6838471688,10.0,0,0,0.0,0.0,0.0,0.0,,11946.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1031.0,410470002001031.0,1000000US410470002001031,0.0,1.0,80103.0,0.0,151.0,44.9480448,-123.0294572,0.0,1.0,8008401031,80068.0,0.0,0.0,28082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128559.52,1436.27,1.0,,,84.0,80084.0,2.0,0.0,22.0,0.0,22.0,0.0,0.0,58.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.951317887826667,0.085,999999.0,28.513,0.221,3.848,7.566,23090.177,151.0,0.0,0.0,0.0 -8408.0,8408,,Block 2029,0,25,PedestrianZones,2300392.8747400166,145188.27941665796,10.0,0,0,0.0,0.0,0.0,0.0,,31434.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,2,5,0,65,0,0,0,0,0,0,74,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2029.0,410470002002029.0,1000000US410470002002029,0.0,0.4099999999999999,80103.0,0.0,156.0,44.9451157,-123.0298279,0.0,3.0,8006902029,80068.0,0.0,0.0,28083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.89,0.6099999999999999,0.0,0.8,6.0,0.0,81.0,0.0,0.0,0.0,1.0,338290.32,2574.99,1.0,,,69.0,80069.0,2.0,85.0,143.0,0.0,58.0,0.0,0.0,95.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.7660703305987004,0.088,999999.0,33.831,0.037,3.08,5.699,25299.16,156.0,0.2055343865715531,3.4130502509004605,0.9106668219934656 -8409.0,8409,,Block 3004,0,25,PedestrianZones,2300676.093479879,145535.2559417648,10.0,0,0,0.0,0.0,0.0,0.0,,14842.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3004.0,410470002003004.0,1000000US410470002003004,0.0,1.0,80103.0,0.0,147.0,44.9483165,-123.0263782,0.0,1.0,8008303004,80082.0,0.0,0.0,28084.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8299999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159727.99,1614.44,1.0,,,83.0,80083.0,2.0,0.0,10.0,0.0,10.0,0.0,0.0,12.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.666846739605457,0.083,999999.0,21.838,0.212,4.431,9.322,19942.545,147.0,0.0,0.0,0.0 -8410.0,8410,,Block 3010,0,25,PedestrianZones,2300597.6788383583,145340.21172475247,10.0,0,0,0.0,0.0,0.0,0.0,,13553.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3010.0,410470002003010.0,1000000US410470002003010,0.0,0.0,80103.0,0.0,149.0,44.94654,-123.0272941,0.0,1.0,8008203010,80082.0,0.0,0.0,28085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,0.0,1.0,145857.52,1704.39,1.0,,,82.0,80082.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3484248612503285,0.04,999999.0,31.891,0.089,4.015,8.136,25616.952,149.0,0.2101644867769889,3.484547553569385,0.9304798718026864 -8432.0,8432,,Block 1001,0,25,PedestrianZones,2300030.577506673,146435.2708474599,10.0,0,0,0.0,0.0,0.0,0.0,,6854.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1001.0,410470002001001.0,1000000US410470002001001,0.0,0.0,80103.0,0.0,104.0,44.95623,-123.0349124,0.0,3.0,8008501001,80068.0,0.0,0.0,28163.0,0.0,0.0,0.0,0.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,73758.99,1098.84,1.0,,,85.0,80085.0,2.0,22.0,22.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.693271811819275,0.338,999999.0,3.308,0.032,2.044,3.615,4430.353,104.0,0.0,0.0,0.0 -8433.0,8433,,Block 3033,0,25,PedestrianZones,2300178.7875536056,146276.57485773385,10.0,0,0,0.0,0.0,0.0,0.0,,10048.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3033.0,410470003003033.0,1000000US410470003003033,0.0,0.4299999999999999,80103.0,0.0,127.0,44.9548444,-123.0329718,0.0,3.0,8008903033,80068.0,0.0,0.0,28164.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108137.45,1315.99,1.0,,,89.0,80089.0,2.0,4.0,7.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4824921037557672,0.184,999999.0,6.565,0.236,2.741,5.372,7639.842,127.0,0.0,0.0,0.0 -8449.0,8449,,Block 3004,0,25,PedestrianZones,2299981.6747911894,146800.07778985897,10.0,0,0,0.0,0.0,0.0,0.0,,87199.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,64,7,0,21,0,0,13,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3004.0,410470003003004.0,1000000US410470003003004,0.0,0.28,80103.0,0.0,84.0,44.9594976,-123.035677,0.0,3.0,8008603004,80417.0,0.0,0.0,28189.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.37,0.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,938416.62,7718.43,1.0,,,86.0,80086.0,1.0,97.0,134.0,0.0,37.0,0.0,0.0,71.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,21.543062205680283,0.362,999999.0,5.032,0.122,1.575,2.601,4885.171,84.0,0.0,0.0,0.0 -8508.0,8508,,Block 2002,0,25,PedestrianZones,2301069.524722008,146171.2809002939,10.0,0,0,0.0,0.0,0.0,0.0,,6375.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2002.0,410470003002002.0,1000000US410470003002002,0.0,0.7299999999999999,80103.0,0.0,160.0,44.954148,-123.0216463,0.0,1.0,8009502002,80082.0,0.0,0.0,34595.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,68603.62,1175.3,1.0,,,95.0,80095.0,1.0,3.0,11.0,0.0,8.0,0.0,0.0,19.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5749209101739217,0.0,999999.0,4.883,0.18,4.003,8.886,8811.847,160.0,0.0,0.0,0.0 -8527.0,8527,,Block 3033,0,25,PedestrianZones,2300560.4476984986,144463.06961974618,10.0,0,0,0.0,0.0,0.0,0.0,,10181.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,39,0,0,19,0,0,0,10,0,0,84,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3033.0,410470002003033.0,1000000US410470002003033,0.0,0.0,80103.0,0.0,135.0,44.9386397,-123.027418,0.0,3.0,8008003033,80068.0,0.0,0.0,34614.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,109565.76,1452.26,1.0,,,80.0,80080.0,2.0,120.0,120.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.515281433136653,0.033,999999.0,59.144,0.624,2.545,4.888,40980.34,135.0,0.2057384490516664,3.377528307017953,0.905016512226578 -8530.0,8530,,Block 3058,0,25,PedestrianZones,2299994.964131529,143791.7637034744,10.0,0,0,0.0,0.0,0.0,0.0,,16724.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,0,4497,0,91,0,0,0,14,0,0,5223,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3058.0,410470002003058.0,1000000US410470002003058,0.0,0.0,80135.0,0.0,115.0,44.932442,-123.0343127,0.0,3.0,8007603058,80068.0,0.0,0.0,34617.0,0.0,0.0,0.0,0.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,179985.07,2155.56,1.0,,,76.0,80076.0,2.0,4917.0,4917.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.131884936809231,0.046,999999.0,55.073,0.399,1.129,1.805,36401.862,115.0,0.0,0.0,0.0 -8581.0,8581,,Block 1016,0,25,PedestrianZones,2301440.1123580853,146499.18452997276,10.0,0,0,0.0,0.0,0.0,0.0,,30628.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,0,0,0,0,0,0,0,9,8,0,0,0,0,24,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1016.0,410470003001016.0,1000000US410470003001016,0.0,0.0,80103.0,0.0,119.0,44.9572015,-123.0170812,0.0,3.0,8009701016,80417.0,0.0,0.0,34669.0,0.0,0.0,0.0,0.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,329615.73,2371.59,1.0,,,97.0,80097.0,1.0,39.0,39.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.566929285139122,0.109,999999.0,5.458,0.175,3.063,7.469,8273.535,119.0,0.0,0.0,0.0 -8582.0,8582,,Block 1022,0,25,PedestrianZones,2301248.444228007,146352.02884546708,10.0,0,0,0.0,0.0,0.0,0.0,,40305.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,2,0,0,0,1,339,0,0,0,0,0,0,0,0,288,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1022.0,410470003001022.0,1000000US410470003001022,0.0,0.0,80103.0,0.0,148.0,44.9558241,-123.0194512,0.0,3.0,8009701022,80082.0,0.0,0.0,34670.0,0.0,0.0,0.0,0.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,433761.3,2696.58,1.0,,,97.0,80097.0,1.0,342.0,342.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.957780432413603,0.156,999999.0,4.927,0.19,3.874,8.93,8868.411,148.0,0.0,0.0,0.0 -8583.0,8583,,Block 1024,0,25,PedestrianZones,2301383.177861981,146237.18230278298,10.0,0,0,0.0,0.0,0.0,0.0,,32410.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1024.0,410470003001024.0,1000000US410470003001024,0.0,0.87,80103.0,0.0,141.0,44.9548288,-123.017699,0.0,1.0,8009701024,80082.0,0.0,0.0,34671.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,348789.45,3192.9,1.0,,,97.0,80097.0,1.0,5.0,38.0,0.0,33.0,0.0,0.0,94.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.007096974242112,0.222,999999.0,5.289,0.2,3.216,7.584,8238.756,141.0,0.0,0.0,0.0 -8584.0,8584,,Block 2000,0,25,PedestrianZones,2301227.013503636,145920.51439519878,10.0,0,0,0.0,0.0,0.0,0.0,,51505.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,19,0,0,0,1,0,0,0,0,87,0,0,0,118,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2000.0,410470003002000.0,1000000US410470003002000,0.0,0.33,80103.0,0.0,160.0,44.9519366,-123.0195522,0.0,3.0,8009502000,80082.0,0.0,0.0,34672.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.8399999999999999,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,554285.77,3502.77,1.0,,,95.0,80095.0,1.0,148.0,221.0,0.0,73.0,0.0,0.0,177.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.72463914763979,0.123,999999.0,5.649,0.23,4.028,8.987,9367.331,160.0,0.0,0.0,0.0 -8586.0,8586,,Block 2008,0,25,PedestrianZones,2301171.4644335983,145478.51725502283,10.0,0,0,0.0,0.0,0.0,0.0,,10073.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2008.0,410470006002008.0,1000000US410470006002008,0.0,1.0,80103.0,0.0,148.0,44.9479453,-123.0200811,0.0,1.0,8010202008,80082.0,0.0,0.0,34674.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108408.89,1346.23,1.0,,,102.0,80102.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.488723559328064,0.123,999999.0,2.958,0.157,4.298,9.34,7870.653,148.0,0.0,0.0,0.0 -8587.0,8587,,Block 1023,0,25,PedestrianZones,2301373.127821564,146361.57361659585,10.0,0,0,0.0,0.0,0.0,0.0,,12372.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1023.0,410470003001023.0,1000000US410470003001023,0.0,1.0,80103.0,0.0,133.0,44.9559449,-123.0178755,0.0,1.0,8009701023,80082.0,0.0,0.0,34675.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133143.47,1544.46,1.0,,,97.0,80097.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,25.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0565507892214385,0.094,999999.0,5.253,0.176,3.074,7.466,8140.315,133.0,0.0,0.0,0.0 -8590.0,8590,,Block 1015,0,25,PedestrianZones,2301568.0794388875,146695.10908908249,10.0,0,0,0.0,0.0,0.0,0.0,,46989.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,0,8,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1015.0,410470003001015.0,1000000US410470003001015,0.0,0.1499999999999999,80103.0,0.0,98.0,44.9589997,-123.0155374,0.0,3.0,8009701015,80417.0,0.0,0.0,34678.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.75,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,505683.06,3462.17,1.0,,,97.0,80097.0,1.0,33.0,39.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.608875386339673,0.079,999999.0,6.375,0.195,2.676,7.126,8640.768,98.0,0.0,0.0,0.0 -8591.0,8591,,Block 1004,0,25,PedestrianZones,2301879.592823967,146292.84814876926,10.0,0,0,0.0,0.0,0.0,0.0,,18211.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,0,58,0,0,0,2,0,0,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1004.0,410470006001004.0,1000000US410470006001004,0.0,0.07,80103.0,0.0,87.0,44.9554686,-123.0114324,0.0,3.0,8009801004,80377.0,0.0,0.0,34679.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,195982.72,1844.44,1.0,,,98.0,80098.0,1.0,56.0,60.0,0.0,4.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.499140115611631,0.0,999999.0,3.388,0.158,1.348,3.207,4221.129,87.0,0.0,0.0,0.0 -8592.0,8592,,Block 1000,0,25,PedestrianZones,2301732.730168804,146994.18134184083,10.0,0,0,0.0,0.0,0.0,0.0,,25715.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1000.0,410470003001000.0,1000000US410470003001000,0.0,0.0,80103.0,0.0,60.0,44.9617359,-123.0135694,0.0,3.0,8010101000,80417.0,0.0,0.0,34680.0,0.0,0.0,0.0,0.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,276741.3,3725.15,1.0,,,101.0,80101.0,1.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.353100335543386,0.13,999999.0,5.381,0.08,2.48,6.664,7708.718,60.0,0.0,0.0,0.0 -8595.0,8595,,Block 1005,0,25,PedestrianZones,2301867.944950873,146137.033947547,10.0,0,0,0.0,0.0,0.0,0.0,,14061.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1005.0,410470006001005.0,1000000US410470006001005,0.0,1.0,80103.0,0.0,94.0,44.9540638,-123.0115186,0.0,1.0,8009801005,80377.0,0.0,0.0,34683.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,151325.45,1551.25,1.0,,,98.0,80098.0,1.0,0.0,18.0,0.0,18.0,0.0,0.0,38.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.473951256854254,0.0,999999.0,2.306,0.154,1.598,3.683,3833.36,94.0,0.0,0.0,0.0 -8596.0,8596,,Block 1009,0,25,PedestrianZones,2301830.5514240325,146034.61554639583,10.0,0,0,0.0,0.0,0.0,0.0,,8880.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1009.0,410470006001009.0,1000000US410470006001009,0.0,0.8599999999999999,80103.0,0.0,101.0,44.9531321,-123.0119519,0.0,1.0,8009801009,80082.0,0.0,0.0,34684.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,95565.65,1252.44,1.0,,,98.0,80098.0,1.0,2.0,14.0,0.0,12.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.193883460227005,0.0,999999.0,3.307,0.118,2.404,5.349,5540.283,101.0,0.0,0.0,0.0 -8597.0,8597,,Block 1010,0,25,PedestrianZones,2301751.0124397,146074.62862439078,10.0,0,0,0.0,0.0,0.0,0.0,,7774.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1010.0,410470006001010.0,1000000US410470006001010,0.0,0.69,80103.0,0.0,107.0,44.9534697,-123.0129752,0.0,1.0,8009801010,80082.0,0.0,0.0,34685.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.27,0.5999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,83658.52,1332.49,1.0,,,98.0,80098.0,1.0,4.0,13.0,0.0,9.0,0.0,0.0,15.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.920533630454637,0.063,999999.0,3.478,0.239,2.701,6.049,6097.613,107.0,0.0,0.0,0.0 -8598.0,8598,,Block 1008,0,25,PedestrianZones,2301912.107981282,145956.04909861923,10.0,0,0,0.0,0.0,0.0,0.0,,17232.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1008.0,410470006001008.0,1000000US410470006001008,0.0,1.0,80103.0,0.0,95.0,44.9524482,-123.0108878,0.0,1.0,8009901008,80082.0,0.0,0.0,34686.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,185445.81,1766.01,1.0,,,99.0,80099.0,1.0,0.0,23.0,0.0,23.0,0.0,0.0,52.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.25724624971694,0.048,999999.0,3.975,0.262,2.885,6.595,6764.9,95.0,0.0,0.0,0.0 -8768.0,8768,,Block 3008,0,25,PedestrianZones,2300094.86475894,146845.6756385743,10.0,0,0,0.0,0.0,0.0,0.0,,1334.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3008.0,410470003003008.0,1000000US410470003003008,0.0,0.0,80103.0,0.0,94.0,44.9599397,-123.0342611,0.0,1.0,8008603008,80417.0,0.0,0.0,51053.0,0.0,0.0,0.0,0.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,14355.44,540.81,1.0,,,86.0,80086.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.3295553667961763,0.303,999999.0,4.855,0.107,1.854,3.322,5232.978,94.0,0.0,0.0,0.0 -8772.0,8772,,Block 1006,0,25,PedestrianZones,2302062.559493216,146052.7108284021,10.0,0,0,0.0,0.0,0.0,0.0,,13014.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1006.0,410470006001006.0,1000000US410470006001006,0.0,1.0,80103.0,0.0,85.0,44.9533597,-123.00902,0.0,1.0,8009901006,80377.0,0.0,0.0,51058.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140048.62,1500.34,1.0,,,99.0,80099.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,32.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.215071091155133,0.127,999999.0,3.613,0.149,2.925,6.636,6559.208,85.0,0.0,0.0,0.0 -8782.0,8782,,Block 3012,0,25,PedestrianZones,2300371.782651518,146860.4980043128,10.0,0,0,0.0,0.0,0.0,0.0,,11565.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3012.0,410470003003012.0,1000000US410470003003012,0.0,1.0,80103.0,0.0,131.0,44.9601512,-123.0307587,0.0,1.0,8008803012,80417.0,0.0,0.0,51081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8299999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,124459.39,1413.18,1.0,,,88.0,80088.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,18.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8571920181567223,0.175,999999.0,4.016,0.1,2.705,5.605,6157.404,131.0,0.0,0.0,0.0 -8783.0,8783,,Block 3026,0,25,PedestrianZones,2300150.5534867244,146520.21877941897,10.0,0,0,0.0,0.0,0.0,0.0,,11625.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,72,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3026.0,410470003003026.0,1000000US410470003003026,0.0,0.03,80103.0,0.0,118.0,44.957028,-123.0334263,0.0,3.0,8008603026,80417.0,0.0,0.0,51082.0,0.0,0.0,0.0,0.0,,,,0,0.0,36.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,125100.73,1419.04,1.0,,,86.0,80086.0,1.0,72.0,74.0,0.0,2.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8719151455293765,0.24,999999.0,4.548,0.114,2.293,4.148,5565.433,118.0,0.0,0.0,0.0 -8784.0,8784,,Block 3031,0,25,PedestrianZones,2300309.955996918,146334.0427482354,10.0,0,0,0.0,0.0,0.0,0.0,,10030.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3031.0,410470003003031.0,1000000US410470003003031,0.0,0.8299999999999998,80103.0,0.0,145.0,44.9553983,-123.031333,0.0,1.0,8008903031,80082.0,0.0,0.0,51083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.11,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107936.31,1314.33,1.0,,,89.0,80089.0,2.0,4.0,24.0,0.0,20.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.477874545480468,0.06,999999.0,7.297,0.252,3.313,6.607,8898.875,145.0,0.0,0.0,0.0 -8785.0,8785,,Block 3036,0,25,PedestrianZones,2300331.322940973,146108.2885643398,10.0,0,0,0.0,0.0,0.0,0.0,,10969.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3036.0,410470003003036.0,1000000US410470003003036,0.0,0.4299999999999999,80103.0,0.0,147.0,44.9533737,-123.0309727,0.0,3.0,8008903036,80068.0,0.0,0.0,51084.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.2,0.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118044.7,1374.73,1.0,,,89.0,80089.0,2.0,12.0,21.0,0.0,9.0,0.0,0.0,10.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7099309238929434,0.0,999999.0,6.556,0.185,3.453,7.219,8815.642,147.0,0.0,0.0,0.0 -8786.0,8786,,Block 4016,0,25,PedestrianZones,2300645.533948149,146536.77799978424,10.0,0,0,0.0,0.0,0.0,0.0,,57946.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4016.0,410470003004016.0,1000000US410470003004016,0.0,0.95,80103.0,0.0,177.0,44.9573164,-123.0271622,0.0,1.0,8009204016,80417.0,0.0,0.0,51085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,623601.9,3706.11,1.0,,,92.0,80092.0,1.0,4.0,76.0,0.0,72.0,0.0,0.0,179.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,14.315917058547235,0.235,999999.0,3.453,0.183,4.206,8.493,7645.234,177.0,0.0,0.0,0.0 -8787.0,8787,,Block 4028,0,25,PedestrianZones,2300596.545182373,146220.60583029204,10.0,0,0,0.0,0.0,0.0,0.0,,9753.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4028.0,410470003004028.0,1000000US410470003004028,0.0,1.0,80103.0,0.0,181.0,44.9544587,-123.0276575,0.0,1.0,8009104028,80082.0,0.0,0.0,51086.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,104959.91,1296.0,1.0,,,91.0,80091.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.409545899878502,0.127,999999.0,3.84,0.138,4.323,9.235,8367.934,181.0,0.0,0.0,0.0 -8789.0,8789,,Block 4008,0,25,PedestrianZones,2300879.367346098,146899.97881184137,10.0,0,0,0.0,0.0,0.0,0.0,,12017.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4008.0,410470003004008.0,1000000US410470003004008,0.0,1.0,80103.0,0.0,146.0,44.9606492,-123.0243437,0.0,1.0,8009304008,80417.0,0.0,0.0,51088.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,129321.24,1421.59,1.0,,,93.0,80093.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,49.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.968804568082183,0.089,999999.0,4.051,1.481,3.143,7.481,7380.431,146.0,0.0,0.0,0.0 -8808.0,8808,,Block 3004,0,25,PedestrianZones,2301665.445054422,144885.9005205556,10.0,0,0,0.0,0.0,0.0,0.0,,23663.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3004.0,410470006003004.0,1000000US410470006003004,0.0,0.92,80103.0,0.0,132.0,44.9427532,-123.0135905,0.0,1.0,8010503004,80082.0,0.0,0.0,51110.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,254654.16,2135.73,1.0,,,105.0,80105.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.846049818568767,0.128,999999.0,2.312,0.096,4.219,9.324,7446.7,132.0,0.0,0.0,0.0 -8809.0,8809,,Block 3011,0,25,PedestrianZones,2301766.209535124,144660.75898746317,10.0,0,0,0.0,0.0,0.0,0.0,,22714.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3011.0,410470006003011.0,1000000US410470006003011,0.0,0.96,80103.0,0.0,124.0,44.9407563,-123.0122256,0.0,1.0,8010503011,80082.0,0.0,0.0,51111.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,244442.01,2153.57,1.0,,,105.0,80105.0,1.0,2.0,48.0,0.0,46.0,0.0,0.0,98.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.611611452731792,0.037,999999.0,3.119,0.089,3.993,8.321,7321.613,124.0,0.0,0.0,0.0 -8810.0,8810,,Block 3012,0,25,PedestrianZones,2301862.7732692994,144663.9436200692,10.0,0,0,0.0,0.0,0.0,0.0,,19703.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3012.0,410470006003012.0,1000000US410470006003012,0.0,0.97,80103.0,0.0,120.0,44.940812,-123.0110039,0.0,1.0,8010503012,80082.0,0.0,0.0,51112.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,212041.64,2007.99,1.0,,,105.0,80105.0,1.0,1.0,38.0,0.0,37.0,0.0,0.0,75.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.867801952453951,0.108,999999.0,9.61,0.08,2.702,6.292,10177.123,120.0,0.0,0.0,0.0 -8813.0,8813,,Block 5008,0,25,PedestrianZones,2301647.2746523377,143992.15138963575,10.0,0,0,0.0,0.0,0.0,0.0,,57300.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,1,21,2,0,0,11,0,137,0,0,0,34,0,0,247,9,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5008.0,410470009005008.0,1000000US410470009005008,0.0,0.4,80103.0,0.0,142.0,44.9347089,-123.0134684,0.0,3.0,8010905008,80082.0,0.0,0.0,51115.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,616647.9,3142.65,1.0,,,109.0,80109.0,1.0,121.0,203.0,0.0,82.0,0.0,0.0,233.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,14.156275297771778,0.364,999999.0,2.617,0.097,4.699,10.403,8332.732,142.0,0.0,0.0,0.0 -8919.0,8919,,Block 3008,0,25,PedestrianZones,2301192.3032747637,145039.95538349796,10.0,0,0,0.0,0.0,0.0,0.0,,26310.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3008.0,410470006003008.0,1000000US410470006003008,0.0,0.98,80103.0,0.0,141.0,44.9440063,-123.0196439,0.0,1.0,8010403008,80082.0,0.0,0.0,51367.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,283140.29,2252.18,1.0,,,104.0,80104.0,1.0,1.0,66.0,0.0,65.0,0.0,0.0,150.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.50000082861439,0.128,999999.0,2.431,0.105,5.04,10.364,8188.494,141.0,0.0,0.0,0.0 -8920.0,8920,,Block 3015,0,25,PedestrianZones,2301280.591254988,144946.36773339112,10.0,0,0,0.0,0.0,0.0,0.0,,14574.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3015.0,410470006003015.0,1000000US410470006003015,0.0,1.0,80103.0,0.0,143.0,44.9431893,-123.0184887,0.0,1.0,8010403015,80082.0,0.0,0.0,51368.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,156839.09,1584.87,1.0,,,104.0,80104.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,24.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6005269116043737,0.136,999999.0,2.447,0.092,4.76,9.972,7948.525,143.0,0.0,0.0,0.0 -8921.0,8921,,Block 2016,0,25,PedestrianZones,2301510.545774644,145225.54502608403,10.0,0,0,0.0,0.0,0.0,0.0,,12072.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2016.0,410470006002016.0,1000000US410470006002016,0.0,1.0,80103.0,0.0,141.0,44.9457649,-123.0156864,0.0,1.0,8010202016,80082.0,0.0,0.0,51369.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,129914.71,1436.98,1.0,,,102.0,80102.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.982428748441153,0.0,999999.0,1.486,0.141,4.256,9.431,6986.696,141.0,0.0,0.0,0.0 -8922.0,8922,,Block 3006,0,25,PedestrianZones,2301427.743206879,145012.33147879227,10.0,0,0,0.0,0.0,0.0,0.0,,11129.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3006.0,410470006003006.0,1000000US410470006003006,0.0,0.19,80103.0,0.0,137.0,44.9438239,-123.016651,0.0,3.0,8010403006,80082.0,0.0,0.0,51370.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.63,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119771.81,1386.54,1.0,,,104.0,80104.0,1.0,50.0,62.0,0.0,12.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.74958005116205,0.0,999999.0,1.818,0.098,4.595,9.79,7429.612,137.0,0.0,0.0,0.0 -8923.0,8923,,Block 2028,0,25,PedestrianZones,2301468.627745389,145118.48473922914,10.0,0,0,0.0,0.0,0.0,0.0,,11755.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2028.0,410470006002028.0,1000000US410470006002028,0.0,0.81,80103.0,0.0,136.0,44.9447902,-123.0161751,0.0,1.0,8010202028,80082.0,0.0,0.0,51371.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126502.67,1432.69,1.0,,,102.0,80102.0,1.0,3.0,16.0,0.0,13.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.904099221761724,0.0,999999.0,1.671,0.101,4.296,9.356,7057.194,136.0,0.0,0.0,0.0 -8924.0,8924,,Block 2027,0,25,PedestrianZones,2301566.540558049,145084.56985774235,10.0,0,0,0.0,0.0,0.0,0.0,,11903.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2027.0,410470006002027.0,1000000US410470006002027,0.0,1.0,80103.0,0.0,140.0,44.9445126,-123.0149215,0.0,1.0,8010002027,80082.0,0.0,0.0,51372.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128101.61,1436.98,1.0,,,100.0,80100.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9408056942131555,0.062,999999.0,1.576,0.098,4.217,9.287,6952.501,140.0,0.0,0.0,0.0 -8925.0,8925,,Block 3005,0,25,PedestrianZones,2301553.6306646606,144920.80627622665,10.0,0,0,0.0,0.0,0.0,0.0,,26528.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3005.0,410470006003005.0,1000000US410470006003005,0.0,1.0,80103.0,0.0,134.0,44.9430359,-123.0150205,0.0,1.0,8010503005,80082.0,0.0,0.0,51373.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285489.53,2667.53,1.0,,,105.0,80105.0,1.0,0.0,27.0,0.0,27.0,0.0,0.0,53.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.553931914895142,0.131,999999.0,1.792,0.09,4.809,9.924,7498.429,134.0,0.0,0.0,0.0 -8926.0,8926,,Block 3017,0,25,PedestrianZones,2301481.948912733,144866.23888801772,10.0,0,0,0.0,0.0,0.0,0.0,,13525.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3017.0,410470006003017.0,1000000US410470006003017,0.0,1.0,80103.0,0.0,141.0,44.942525,-123.0159068,0.0,1.0,8010503017,80082.0,0.0,0.0,51374.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,145562.58,1544.18,1.0,,,105.0,80105.0,1.0,0.0,16.0,0.0,16.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3416541131539206,0.131,999999.0,1.792,0.09,4.809,9.924,7498.429,141.0,0.0,0.0,0.0 -8927.0,8927,,Block 2026,0,25,PedestrianZones,2301659.889051561,145055.3929598134,10.0,0,0,0.0,0.0,0.0,0.0,,9719.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.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.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2026.0,410470006002026.0,1000000US410470006002026,0.0,0.89,80103.0,0.0,138.0,44.9442762,-123.0137277,0.0,1.0,8010002026,80082.0,0.0,0.0,51375.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.07,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,104596.04,1316.64,1.0,,,100.0,80100.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,14.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.401192544650552,0.125,999999.0,1.177,0.043,4.341,9.587,6889.145,138.0,0.0,0.0,0.0 -8928.0,8928,,Block 3020,0,25,PedestrianZones,2301306.0699086976,144621.90830340775,10.0,0,0,0.0,0.0,0.0,0.0,,10852.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3020.0,410470006003020.0,1000000US410470006003020,0.0,0.67,80103.0,0.0,151.0,44.9402779,-123.0180379,0.0,1.0,8010403020,80082.0,0.0,0.0,51376.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.32,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116786.29,1790.58,1.0,,,104.0,80104.0,1.0,6.0,18.0,0.0,12.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.681041856915701,0.0,999999.0,6.244,0.098,4.989,9.997,10394.828,151.0,0.0,0.0,0.0 -8929.0,8929,,Block 6003,0,25,PedestrianZones,2301406.630183414,144394.11363687593,10.0,0,0,0.0,0.0,0.0,0.0,,26217.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6003.0,410470009006003.0,1000000US410470009006003,0.0,0.9,80103.0,0.0,155.0,44.9382571,-123.0166744,0.0,1.0,8010806003,80082.0,0.0,0.0,51377.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,282140.36,2544.54,1.0,,,108.0,80108.0,1.0,4.0,42.0,0.0,38.0,0.0,0.0,74.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.477045719340871,0.134,999999.0,4.403,0.15,4.91,10.152,9315.451,155.0,0.0,0.0,0.0 -8930.0,8930,,Block 3022,0,25,PedestrianZones,2301500.6351860138,144642.82320198504,10.0,0,0,0.0,0.0,0.0,0.0,,26477.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3022.0,410470006003022.0,1000000US410470006003022,0.0,1.0,80103.0,0.0,137.0,44.9405206,-123.015582,0.0,1.0,8010503022,80082.0,0.0,0.0,51378.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,284936.7,2379.49,1.0,,,105.0,80105.0,1.0,0.0,66.0,0.0,66.0,0.0,0.0,147.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.541240860425728,0.242,999999.0,1.928,0.096,4.422,8.525,6690.194,137.0,0.0,0.0,0.0 -8931.0,8931,,Block 6004,0,25,PedestrianZones,2301319.559995856,144432.3172685548,10.0,0,0,0.0,0.0,0.0,0.0,,19657.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6004.0,410470009006004.0,1000000US410470009006004,0.0,0.75,80103.0,0.0,161.0,44.9385764,-123.0177922,0.0,1.0,8010806004,80082.0,0.0,0.0,51379.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,211548.11,1981.74,1.0,,,108.0,80108.0,1.0,7.0,28.0,0.0,21.0,0.0,0.0,34.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.856472151769752,0.083,999999.0,5.526,0.11,4.964,9.752,9777.743,161.0,0.0,0.0,0.0 -8932.0,8932,,Block 1013,0,25,PedestrianZones,2301767.190816049,145878.53150268344,10.0,0,0,0.0,0.0,0.0,0.0,,9212.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1013.0,410470006001013.0,1000000US410470006001013,0.0,1.0,80103.0,0.0,117.0,44.9517104,-123.012693,0.0,1.0,8009801013,80082.0,0.0,0.0,51380.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,99140.03,1293.44,1.0,,,98.0,80098.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.2759398750322024,0.0,999999.0,3.666,0.268,3.318,7.629,7228.714,117.0,0.0,0.0,0.0 -8933.0,8933,,Block 1012,0,25,PedestrianZones,2301798.7464904254,145956.31369964126,10.0,0,0,0.0,0.0,0.0,0.0,,8868.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1012.0,410470006001012.0,1000000US410470006001012,0.0,1.0,80103.0,0.0,109.0,44.9524188,-123.0123239,0.0,1.0,8009801012,80082.0,0.0,0.0,51381.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,1.0,95430.66,1237.22,1.0,,,98.0,80098.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,24.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1907846492381844,0.048,999999.0,3.975,0.262,2.885,6.595,6764.9,109.0,0.0,0.0,0.0 -8934.0,8934,,Block 1020,0,25,PedestrianZones,2301848.967538353,145802.21008478475,10.0,0,0,0.0,0.0,0.0,0.0,,17361.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1020.0,410470006001020.0,1000000US410470006001020,0.0,0.67,80103.0,0.0,115.0,44.9510467,-123.0116271,0.0,1.0,8009901020,80082.0,0.0,0.0,51382.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,186833.35,1786.12,1.0,,,99.0,80099.0,1.0,10.0,30.0,0.0,20.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.289099681489033,0.051,999999.0,3.514,0.26,3.364,7.776,7225.625,115.0,0.0,0.0,0.0 -8935.0,8935,,Block 1021,0,25,PedestrianZones,2301948.2632297347,145762.57880927372,10.0,0,0,0.0,0.0,0.0,0.0,,17740.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1021.0,410470006001021.0,1000000US410470006001021,0.0,0.93,80103.0,0.0,110.0,44.950718,-123.0103537,0.0,1.0,8009901021,80082.0,0.0,0.0,51383.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190911.61,1794.35,1.0,,,99.0,80099.0,1.0,1.0,15.0,0.0,14.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.382723651765978,0.127,999999.0,3.253,0.146,3.264,7.552,6915.478,110.0,0.0,0.0,0.0 -8936.0,8936,,Block 1029,0,25,PedestrianZones,2301888.6679932345,145620.12069840677,10.0,0,0,0.0,0.0,0.0,0.0,,14933.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1029.0,410470006001029.0,1000000US410470006001029,0.0,1.0,80103.0,0.0,119.0,44.94942,-123.0110525,0.0,1.0,8009901029,80082.0,0.0,0.0,51384.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160703.73,1657.84,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.689246674550843,0.0,999999.0,1.911,0.226,4.074,9.341,7201.562,119.0,0.0,0.0,0.0 -8937.0,8937,,Block 2002,0,25,PedestrianZones,2301841.02308546,145479.6070030883,10.0,0,0,0.0,0.0,0.0,0.0,,15633.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2002.0,410470006002002.0,1000000US410470006002002,0.0,1.0,80103.0,0.0,131.0,44.9481427,-123.0116006,0.0,1.0,8010002002,80082.0,0.0,0.0,51385.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,168238.59,1706.02,1.0,,,100.0,80100.0,1.0,0.0,16.0,0.0,16.0,0.0,0.0,42.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.862223255928187,0.064,999999.0,1.985,0.172,4.076,9.308,7227.372,131.0,0.0,0.0,0.0 -8938.0,8938,,Block 2020,0,25,PedestrianZones,2301703.068371009,145153.51312533751,10.0,0,0,0.0,0.0,0.0,0.0,,10502.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2020.0,410470006002020.0,1000000US410470006002020,0.0,0.6999999999999998,80103.0,0.0,144.0,44.9451709,-123.0132195,0.0,1.0,8010002020,80082.0,0.0,0.0,51386.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.23,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113020.88,1341.4,1.0,,,100.0,80100.0,1.0,3.0,10.0,0.0,7.0,0.0,0.0,13.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5946000219964853,0.124,999999.0,0.797,0.043,4.457,9.965,6887.952,144.0,0.0,0.0,0.0 -8939.0,8939,,Block 1034,0,25,PedestrianZones,2301994.7932231114,145603.99056389267,10.0,0,0,0.0,0.0,0.0,0.0,,9826.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1034.0,410470006001034.0,1000000US410470006001034,0.0,0.92,80103.0,0.0,119.0,44.9493045,-123.0097018,0.0,1.0,8009901034,80082.0,0.0,0.0,51387.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105740.61,1361.98,1.0,,,99.0,80099.0,1.0,1.0,12.0,0.0,11.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4274682022480247,0.064,999999.0,1.427,0.115,3.86,9.143,6764.897,119.0,0.0,0.0,0.0 -8940.0,8940,,Block 1033,0,25,PedestrianZones,2302186.035059848,145666.7422919869,10.0,0,0,0.0,0.0,0.0,0.0,,36834.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1033.0,410470006001033.0,1000000US410470006001033,0.0,0.93,80103.0,0.0,112.0,44.9499224,-123.0073041,0.0,1.0,8009901033,80082.0,0.0,0.0,51388.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,396404.73,2632.44,1.0,,,99.0,80099.0,1.0,3.0,44.0,0.0,41.0,0.0,0.0,91.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.100192406668326,0.242,999999.0,1.792,0.139,3.753,8.903,6844.999,112.0,0.0,0.0,0.0 -8942.0,8942,,Block 2021,0,25,PedestrianZones,2301799.4508145694,145111.3601935049,10.0,0,0,0.0,0.0,0.0,0.0,,11934.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2021.0,410470006002021.0,1000000US410470006002021,0.0,0.6099999999999999,80103.0,0.0,149.0,44.9448187,-123.0119821,0.0,1.0,8010002021,80082.0,0.0,0.0,51390.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.25,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128433.52,1426.74,1.0,,,100.0,80100.0,1.0,7.0,18.0,0.0,11.0,0.0,0.0,28.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9484253664746176,0.191,999999.0,1.898,0.043,3.634,8.197,6460.849,149.0,0.0,0.0,0.0 -8943.0,8943,,Block 3010,0,25,PedestrianZones,2301667.924090652,144659.86766590443,10.0,0,0,0.0,0.0,0.0,0.0,,22098.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3010.0,410470006003010.0,1000000US410470006003010,0.0,0.97,80103.0,0.0,126.0,44.9407208,-123.01347,0.0,1.0,8010503010,80082.0,0.0,0.0,51391.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,237816.44,2141.69,1.0,,,105.0,80105.0,1.0,1.0,34.0,0.0,33.0,0.0,0.0,70.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.459509510303078,0.014,999999.0,3.057,0.092,3.999,8.33,7287.65,126.0,0.0,0.0,0.0 -8944.0,8944,,Block 2025,0,25,PedestrianZones,2301759.185554276,145018.87290796568,10.0,0,0,0.0,0.0,0.0,0.0,,11766.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2025.0,410470006002025.0,1000000US410470006002025,0.0,1.0,80103.0,0.0,144.0,44.9439755,-123.0124557,0.0,1.0,8010002025,80082.0,0.0,0.0,51392.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126625.58,1410.53,1.0,,,100.0,80100.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9069208084389286,0.145,999999.0,2.655,0.087,3.944,8.635,7225.2,144.0,0.0,0.0,0.0 -8945.0,8945,,Block 2024,0,25,PedestrianZones,2301870.512345809,144995.7962539475,10.0,0,0,0.0,0.0,0.0,0.0,,4764.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2024.0,410470006002024.0,1000000US410470006002024,0.0,1.0,80103.0,0.0,141.0,44.9437991,-123.0110366,0.0,1.0,8010002024,80082.0,0.0,0.0,51393.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,1.0,51271.36,995.56,1.0,,,100.0,80100.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.1770275056091408,0.224,999999.0,2.124,0.041,4.052,9.005,7122.914,141.0,0.0,0.0,0.0 -8946.0,8946,,Block 6001,0,25,PedestrianZones,2301628.2641333286,144461.95561287555,10.0,0,0,0.0,0.0,0.0,0.0,,8449.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6001.0,410470009006001.0,1000000US410470009006001,0.0,0.95,80103.0,0.0,138.0,44.9389295,-123.0138943,0.0,1.0,8010806001,80082.0,0.0,0.0,51394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,90928.89,1456.08,1.0,,,108.0,80108.0,1.0,1.0,19.0,0.0,18.0,0.0,0.0,31.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0874381885534103,0.065,999999.0,4.084,0.12,4.555,9.45,8661.444,138.0,0.0,0.0,0.0 -8948.0,8948,,Block 3000,0,25,PedestrianZones,2302000.776215378,144811.90461657473,10.0,0,0,9.47,0.0,0.0,0.0,,101060.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,236,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3000.0,410470006003000.0,1000000US410470006003000,3.38,0.16,80103.0,0.0,127.0,44.9421814,-123.0093143,0.0,3.0,8010703000,80082.0,0.0,0.0,51396.0,0.0,9.47,0.0,2.0,CEMETERY,DEVELOPED,,0,0.0,2.53,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1087584.35,5035.37,1.0,,,107.0,80107.0,1.0,172.0,204.0,0.0,32.0,0.0,0.0,68.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.967479085191336,0.161,999999.0,11.247,0.026,2.32,5.632,10802.504,127.0,0.0,0.0,0.0 -8950.0,8950,,Block 5001,0,25,PedestrianZones,2301908.8796972446,144494.931963039,10.0,0,0,0.0,0.0,0.0,0.0,,10033.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5001.0,410470009005001.0,1000000US410470009005001,0.0,1.0,80103.0,0.0,119.0,44.9393046,-123.0103534,0.0,1.0,8010905001,80082.0,0.0,0.0,51398.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107970.23,1369.38,1.0,,,109.0,80109.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,33.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.478653263626077,0.082,999999.0,8.334,0.073,3.281,7.292,10000.752,119.0,0.0,0.0,0.0 -8951.0,8951,,Block 3001,0,25,PedestrianZones,2302057.658069172,144616.24597795945,10.0,0,0,0.0,0.0,0.0,0.0,,17255.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,6,155,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3001.0,410470006003001.0,1000000US410470006003001,0.0,0.11,80103.0,0.0,117.0,44.9404374,-123.0085169,0.0,3.0,8010703001,80082.0,0.0,0.0,51399.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.27,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,185698.0,1804.97,1.0,,,107.0,80107.0,1.0,137.0,154.0,0.0,17.0,0.0,0.0,26.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.263035607776538,0.009,999999.0,8.593,0.07,2.444,5.661,9122.353,117.0,0.0,0.0,0.0 -8952.0,8952,,Block 5000,0,25,PedestrianZones,2301985.1486567007,144488.7641334673,10.0,0,0,0.0,0.0,0.0,0.0,,12727.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5000.0,410470009005000.0,1000000US410470009005000,0.0,0.89,80103.0,0.0,121.0,44.9392704,-123.0093851,0.0,1.0,8010905000,80082.0,0.0,0.0,51400.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,136968.15,1606.47,1.0,,,109.0,80109.0,1.0,2.0,19.0,0.0,17.0,0.0,0.0,47.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.14435323164397,0.046,999999.0,8.654,0.072,2.835,6.372,9617.045,121.0,0.0,0.0,0.0 -8953.0,8953,,Block 6022,0,25,PedestrianZones,2301341.013002397,144183.01766143442,10.0,0,0,0.0,0.0,0.0,0.0,,12671.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6022.0,410470009006022.0,1000000US410470009006022,0.0,1.0,80103.0,0.0,168.0,44.93634,-123.0174221,0.0,1.0,8010806022,80082.0,0.0,0.0,51401.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,136364.81,1505.42,1.0,,,108.0,80108.0,1.0,0.0,17.0,0.0,17.0,0.0,0.0,24.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.130502450071876,0.201,999999.0,4.059,0.13,5.374,10.971,9619.604,168.0,0.0,0.0,0.0 -8954.0,8954,,Block 6021,0,25,PedestrianZones,2301438.043198064,144159.95181731615,10.0,0,0,0.0,0.0,0.0,0.0,,12161.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6021.0,410470009006021.0,1000000US410470009006021,0.0,1.0,80103.0,0.0,150.0,44.9361597,-123.0161842,0.0,1.0,8010806021,80082.0,0.0,0.0,51402.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6999999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,130869.37,1665.1,1.0,,,108.0,80108.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,20.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.004344613176135,0.25,999999.0,4.083,0.167,4.552,9.341,8591.493,150.0,0.0,0.0,0.0 -8955.0,8955,,Block 6026,0,25,PedestrianZones,2301464.7666096305,144264.80920855288,10.0,0,0,0.0,0.0,0.0,0.0,,12843.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6026.0,410470009006026.0,1000000US410470009006026,0.0,0.94,80103.0,0.0,155.0,44.9371103,-123.0158871,0.0,1.0,8010806026,80082.0,0.0,0.0,51403.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.7399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,138217.56,1498.25,1.0,,,108.0,80108.0,1.0,1.0,18.0,0.0,17.0,0.0,0.0,23.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.173035805751721,0.198,999999.0,4.379,0.149,4.834,9.966,9180.858,155.0,0.0,0.0,0.0 -8956.0,8956,,Block 6018,0,25,PedestrianZones,2301569.7320053875,144260.77942380577,10.0,0,0,2.31,0.0,0.0,0.0,,15724.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6018.0,410470009006018.0,1000000US410470009006018,0.87,1.0,80103.0,0.0,141.0,44.9371035,-123.0145563,0.0,1.0,8010806018,80082.0,0.0,0.0,51404.0,0.0,2.31,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,169222.63,2023.81,1.0,,,108.0,80108.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,2.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.884813534045241,0.198,999999.0,4.379,0.149,4.834,9.966,9180.858,141.0,0.0,0.0,0.0 -8957.0,8957,,Block 5005,0,25,PedestrianZones,2301812.1348747457,144179.1570024504,10.0,0,0,0.0,0.0,0.0,0.0,,12222.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5005.0,410470009005005.0,1000000US410470009005005,0.0,1.0,80103.0,0.0,121.0,44.9364372,-123.0114543,0.0,1.0,8010905005,80082.0,0.0,0.0,51405.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131536.12,1789.61,1.0,,,109.0,80109.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,36.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0196511545764104,0.26,999999.0,9.635,0.111,3.242,7.699,11093.994,121.0,0.0,0.0,0.0 -8960.0,8960,,Block 6020,0,25,PedestrianZones,2301526.560370876,144116.77988298333,10.0,0,0,0.0,0.0,0.0,0.0,,10833.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6020.0,410470009006020.0,1000000US410470009006020,0.0,1.0,80103.0,0.0,140.0,44.9357961,-123.0150462,0.0,1.0,8010806020,80082.0,0.0,0.0,51408.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116577.7,1383.26,1.0,,,108.0,80108.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,8.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.676253404058616,0.228,999999.0,3.57,0.155,4.607,9.769,8537.241,140.0,0.0,0.0,0.0 -8983.0,8983,,Block 1003,0,25,PedestrianZones,2301982.365431644,146207.1042718836,10.0,0,0,0.0,0.0,0.0,0.0,,39805.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1003.0,410470006001003.0,1000000US410470006001003,0.0,1.0,80103.0,0.0,86.0,44.954726,-123.0100967,0.0,1.0,8009901003,80377.0,0.0,0.0,51687.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,428372.87,3012.04,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.83407925025076,0.041,999999.0,2.319,0.155,1.578,3.655,3823.512,86.0,0.0,0.0,0.0 -9000.0,9000,,Block 3006,0,25,PedestrianZones,2300045.198463208,146524.32619364344,10.0,0,0,0.0,0.0,0.0,0.0,,10656.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3006.0,410470003003006.0,1000000US410470003003006,0.0,0.2899999999999999,80103.0,0.0,104.0,44.9570352,-123.0347626,0.0,3.0,8008603006,80417.0,0.0,0.0,51793.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.0,0.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114678.25,1341.06,1.0,,,86.0,80086.0,1.0,10.0,14.0,0.0,4.0,0.0,0.0,5.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6326481093709595,0.278,999999.0,4.592,0.082,2.238,4.008,5504.29,104.0,0.0,0.0,0.0 -9014.0,9014,,Block 1015,0,25,PedestrianZones,2300317.082378676,145788.11025964134,10.0,0,0,0.0,0.0,0.0,0.0,,10480.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1015.0,410470002001015.0,1000000US410470002001015,0.0,0.12,80103.0,0.0,150.0,44.9504897,-123.0310259,0.0,3.0,8008401015,80068.0,0.0,0.0,51811.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.83,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112782.54,1349.83,1.0,,,84.0,80084.0,2.0,23.0,26.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5891286676221124,0.062,999999.0,8.0,0.255,3.742,7.552,9953.276,150.0,0.0,0.0,0.0 -9015.0,9015,,Block 1018,0,25,PedestrianZones,2300602.8267854,145677.0223465486,10.0,0,0,0.0,0.0,0.0,0.0,,10413.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1018.0,410470002001018.0,1000000US410470002001018,0.0,1.0,80103.0,0.0,161.0,44.949571,-123.0273624,0.0,1.0,8008401018,80082.0,0.0,0.0,51812.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,1.0,112063.7,1339.45,1.0,,,84.0,80084.0,2.0,0.0,3.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.572626317257169,0.121,999999.0,11.473,0.203,3.94,8.001,12463.476,161.0,0.0,0.0,0.0 -9016.0,9016,,Block 3026,0,25,PedestrianZones,2300279.8353308463,144609.17851005305,10.0,0,0,0.0,0.0,0.0,0.0,,10286.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,123,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3026.0,410470002003026.0,1000000US410470002003026,0.0,0.0,80103.0,0.0,132.0,44.9398749,-123.0310298,0.0,3.0,8008003026,80068.0,0.0,0.0,51813.0,0.0,2.07,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,1.0,110696.14,1386.35,1.0,,,80.0,80080.0,2.0,61.0,61.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.541231467202401,0.041,999999.0,61.335,0.729,2.218,3.675,41606.585,132.0,0.2064491295332315,3.4111641949851137,0.9115032326472292 -9017.0,9017,,Block 2020,0,25,PedestrianZones,2300880.470561197,145674.84890821332,10.0,0,0,0.0,0.0,0.0,0.0,,13668.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,11,0,0,0,19,0,10,0,0,0,0,0,1,53,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2020.0,410470003002020.0,1000000US410470003002020,0.0,0.09,80103.0,0.0,156.0,44.9496296,-123.0238447,0.0,3.0,8009502020,80082.0,0.0,0.0,51814.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.89,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147089.22,1539.32,1.0,,,95.0,80095.0,1.0,53.0,58.0,0.0,5.0,0.0,0.0,9.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3767008209516054,0.042,999999.0,9.483,0.257,4.11,8.872,11746.881,156.0,0.0,0.0,0.0 -9037.0,9037,,Block 6010,0,25,PedestrianZones,2301269.360286008,144319.27448509724,10.0,0,0,0.0,0.0,0.0,0.0,,7331.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6010.0,410470009006010.0,1000000US410470009006010,0.0,1.0,80103.0,0.0,163.0,44.9375455,-123.0183833,0.0,1.0,8010806010,80082.0,0.0,0.0,51853.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,78892.14999999998,1190.12,1.0,,,108.0,80108.0,1.0,0.0,9.0,0.0,9.0,0.0,0.0,13.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.8111130301810123,0.211,999999.0,4.686,0.126,5.253,10.52,9731.41,163.0,0.0,0.0,0.0 -9047.0,9047,,Block 3009,0,25,PedestrianZones,2300636.933658272,145435.2300492307,10.0,0,0,0.0,0.0,0.0,0.0,,14930.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3009.0,410470002003009.0,1000000US410470002003009,0.0,0.7299999999999999,80103.0,0.0,147.0,44.9474057,-123.0268346,0.0,1.0,8008303009,80082.0,0.0,0.0,51866.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.32,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160678.82,1617.91,1.0,,,83.0,80083.0,2.0,7.0,26.0,0.0,19.0,0.0,0.0,22.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.688674960125781,0.04,999999.0,31.891,0.089,4.015,8.136,25616.952,147.0,0.0,0.0,0.0 -9048.0,9048,,Block 3003,0,25,PedestrianZones,2300714.710089424,145632.63058161535,10.0,0,0,0.0,0.0,0.0,0.0,,13939.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3003.0,410470002003003.0,1000000US410470002003003,0.0,1.0,80103.0,0.0,158.0,44.9492032,-123.0259276,0.0,1.0,8008303003,80082.0,0.0,0.0,51867.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,150009.77,1563.33,1.0,,,83.0,80083.0,2.0,0.0,14.0,0.0,14.0,0.0,0.0,17.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4437474947303715,0.0,999999.0,21.844,0.124,4.098,8.597,19482.547,158.0,0.0,0.0,0.0 -9049.0,9049,,Block 3029,0,25,PedestrianZones,2300584.083134851,144522.76279182892,10.0,0,0,0.0,0.0,0.0,0.0,,9904.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3029.0,410470002003029.0,1000000US410470002003029,0.0,0.4099999999999999,80103.0,0.0,127.0,44.9391833,-123.0271423,0.0,3.0,8008003029,80068.0,0.0,0.0,51868.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.91,0.64,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,106589.89,1444.66,1.0,,,80.0,80080.0,2.0,68.0,116.0,0.0,48.0,0.0,0.0,75.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4469649593588145,0.123,999999.0,44.552,0.677,3.562,6.682,32789.736,127.0,0.205918972729257,3.378258533730385,0.9054351075899552 -9056.0,9056,,Block 3013,0,25,PedestrianZones,2300481.636223129,146857.9765228516,10.0,0,0,0.0,0.0,0.0,0.0,,13255.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3013.0,410470003003013.0,1000000US410470003003013,0.0,1.0,80103.0,0.0,144.0,44.9601594,-123.029366,0.0,1.0,8008803013,80417.0,0.0,0.0,51875.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142644.81,1511.57,1.0,,,88.0,80088.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.27467135101856,0.083,999999.0,3.987,0.127,2.59,5.143,5842.853,144.0,0.0,0.0,0.0 -9057.0,9057,,Block 3044,0,25,PedestrianZones,2300069.4557052767,145992.9589355593,10.0,0,0,0.0,0.0,0.0,0.0,,10221.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,10,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3044.0,410470003003044.0,1000000US410470003003044,0.0,0.4199999999999999,80103.0,0.0,128.0,44.9522625,-123.034244,0.0,3.0,8008903044,80068.0,0.0,0.0,51876.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.22,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,109997.1,1326.4,1.0,,,89.0,80089.0,2.0,11.0,19.0,0.0,8.0,0.0,0.0,9.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.525183666360361,0.123,999999.0,8.941,0.501,2.905,6.122,9640.063,128.0,0.0,0.0,0.0 -9058.0,9058,,Block 4031,0,25,PedestrianZones,2300559.713945745,146127.2166461121,10.0,0,0,0.0,0.0,0.0,0.0,,9822.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4031.0,410470003004031.0,1000000US410470003004031,0.0,1.0,80103.0,0.0,171.0,44.9536083,-123.028087,0.0,1.0,8009104031,80082.0,0.0,0.0,51877.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105702.35,1300.86,1.0,,,91.0,80091.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,27.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.426589846137522,0.186,999999.0,5.583,0.144,4.403,9.589,9709.992,171.0,0.0,0.0,0.0 -9059.0,9059,,Block 4007,0,25,PedestrianZones,2300780.884862791,146905.47756542175,10.0,0,0,0.0,0.0,0.0,0.0,,12366.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4007.0,410470003004007.0,1000000US410470003004007,0.0,0.8299999999999998,80103.0,0.0,149.0,44.9606709,-123.0255936,0.0,1.0,8009304007,80417.0,0.0,0.0,51878.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.12,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133080.04,1477.3,1.0,,,93.0,80093.0,1.0,2.0,12.0,0.0,10.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0550947256173924,0.089,999999.0,4.051,1.481,3.143,7.481,7380.431,149.0,0.0,0.0,0.0 -9069.0,9069,,Block 3003,0,25,PedestrianZones,2300167.243469696,147011.57940584983,10.0,0,0,0.0,0.0,0.0,0.0,,19396.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,3,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3003.0,410470003003003.0,1000000US410470003003003,0.0,0.0,80103.0,0.0,96.0,44.9614524,-123.0334101,0.0,3.0,8008603003,80417.0,0.0,0.0,51889.0,0.0,0.0,0.0,0.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,208739.05,1886.84,1.0,,,86.0,80086.0,1.0,16.0,16.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.791984904195317,0.348,999999.0,4.6,0.136,1.845,3.317,5066.688,96.0,0.0,0.0,0.0 -9074.0,9074,,Block 2011,0,25,PedestrianZones,2301445.4611149887,145370.28444244782,10.0,0,0,0.0,0.0,0.0,0.0,,12753.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2011.0,410470006002011.0,1000000US410470006002011,0.0,0.94,80103.0,0.0,135.0,44.9470486,-123.0165679,0.0,1.0,8010202011,80082.0,0.0,0.0,51900.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,137244.48,1474.6,1.0,,,102.0,80102.0,1.0,1.0,16.0,0.0,15.0,0.0,0.0,39.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1506968873387318,0.132,999999.0,2.038,0.141,4.276,9.46,7358.968,135.0,0.0,0.0,0.0 -9075.0,9075,,Block 3021,0,25,PedestrianZones,2301379.591361945,144608.59871320127,10.0,0,0,0.0,0.0,0.0,0.0,,19029.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,36,3,0,0,0,0,0,0,0,0,0,2,0,11,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3021.0,410470006003021.0,1000000US410470006003021,0.0,0.23,80103.0,0.0,147.0,44.9401788,-123.0171015,0.0,3.0,8010503021,80082.0,0.0,0.0,51901.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.15,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,204791.03,1927.91,1.0,,,105.0,80105.0,1.0,43.0,56.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.701351028819628,0.06,999999.0,4.493,0.118,5.034,9.988,9267.936,147.0,0.0,0.0,0.0 -9076.0,9076,,Block 3002,0,25,PedestrianZones,2301802.26292332,144871.81950775234,10.0,0,0,0.0,0.0,0.0,0.0,,7353.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3002.0,410470006003002.0,1000000US410470006003002,0.0,1.0,80103.0,0.0,136.0,44.9426649,-123.0118521,0.0,1.0,8010503002,80082.0,0.0,0.0,51902.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,79126.77,1555.55,1.0,,,105.0,80105.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,23.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.81649912099422,0.196,999999.0,2.39,0.087,4.183,9.22,7430.223,136.0,0.0,0.0,0.0 -9077.0,9077,,Block 6023,0,25,PedestrianZones,2301311.201579403,144066.13285903484,10.0,0,0,0.0,0.0,0.0,0.0,,17710.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6023.0,410470009006023.0,1000000US410470009006023,0.0,0.31,80103.0,0.0,168.0,44.9352802,-123.0177535,0.0,3.0,8010806023,80082.0,0.0,0.0,51903.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.48,0.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190595.3,1730.75,1.0,,,108.0,80108.0,1.0,37.0,54.0,0.0,17.0,0.0,0.0,25.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.375462245325819,0.216,999999.0,4.994,0.161,4.575,8.731,8783.878,168.0,0.0,0.0,0.0 -9235.0,9235,,Block 2020,0,25,PedestrianZones,2299305.1553022047,145084.885184749,10.0,0,0,0.06,0.0,0.0,0.0,,0.0,28975.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2020.0,410470002002020.0,1000000US410470002002020,0.0,0.0,80103.0,0.0,103.0,44.9438784,-123.0435634,0.0,1.0,8006102020,80068.0,0.0,0.0,52148.0,0.0,0.06,0.0,3.0,URBAN PARK,DEVELOPED,,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,311830.81,2394.2,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.1586440521978405,0.544,999999.0,4.024,0.184,0.214,0.306,2771.006,103.0,0.0,0.0,0.0 -9236.0,9236,,Block 2038,0,25,PedestrianZones,2299499.8754686727,144983.73109799283,10.0,0,0,0.0,0.0,0.0,0.0,,4991.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2038.0,410470002002038.0,1000000US410470002002038,0.0,0.0,80103.0,0.0,108.0,44.9430237,-123.0410568,0.0,1.0,8006102038,80068.0,0.0,0.0,52149.0,0.0,0.0,0.0,0.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,53715.73,1853.87,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.2331423876611805,0.32,999999.0,23.467,2.848,1.466,2.418,16566.462,108.0,0.0,0.0,0.0 -9237.0,9237,,Block 2047,0,25,PedestrianZones,2299578.449187359,144608.779927346,10.0,0,0,0.0,0.0,0.0,0.0,,16126.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,11,72,28,104,0,95,41,0,520,0,0,0,15,0,44,929,99,52,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2047.0,410470002002047.0,1000000US410470002002047,0.0,0.0,80103.0,0.0,98.0,44.9396733,-123.0399123,0.0,3.0,8006702047,80068.0,0.0,0.0,52150.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,2.93,416.0,0.0,0.0,0.0,1.0,173540.12,1672.26,1.0,,,67.0,80067.0,2.0,625.0,625.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.9839294061893966,0.106,999999.0,33.456,1.761,2.519,4.049,24003.461,98.0,0.2028828452087509,3.4503158668851968,0.9135780101375852 -9238.0,9238,,Block 1026,0,25,PedestrianZones,2299933.45441278,145538.77022144044,10.0,0,0,0.0,0.0,0.0,0.0,,36967.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,349,0,0,10,0,0,0,1,0,39,237,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1026.0,410470002001026.0,1000000US410470002001026,0.0,0.0,80103.0,0.0,121.0,44.9481387,-123.0357862,0.0,3.0,8008501026,80068.0,0.0,0.0,52151.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,1.0,397831.25,3069.87,1.0,,,85.0,80085.0,2.0,302.0,302.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.13294083555258,0.267,999999.0,14.094,2.015,1.377,2.71,10755.075,121.0,0.0,0.0,0.0 -9239.0,9239,,Block 1023,0,25,PedestrianZones,2300088.7223087293,145673.07716233443,10.0,0,0,0.0,0.0,0.0,0.0,,60761.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,16,8,0,0,0,0,82,0,0,0,9,0,26,194,0,17,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1023.0,410470002001023.0,1000000US410470002001023,0.0,0.19,80103.0,0.0,138.0,44.9493906,-123.0338729,0.0,3.0,8008501023,80068.0,0.0,0.0,52152.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.55,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,653899.41,3624.58,1.0,,,85.0,80085.0,2.0,141.0,175.0,0.0,34.0,0.0,0.0,91.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.011451679915886,0.107,999999.0,10.568,0.584,3.056,6.485,10914.386,138.0,0.0,0.0,0.0 -9240.0,9240,,Block 1028,0,25,PedestrianZones,2300110.496844094,145527.84826520743,10.0,0,0,0.0,0.0,0.0,0.0,,7922.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,13,0,0,0,0,9,0,5,0,0,0,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1028.0,410470002001028.0,1000000US410470002001028,0.0,0.0,80103.0,0.0,138.0,44.9480905,-123.0335393,0.0,3.0,8008501028,80068.0,0.0,0.0,52153.0,0.0,0.0,0.0,0.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,85256.47999999998,1679.08,1.0,,,85.0,80085.0,2.0,35.0,35.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.957217810171767,0.04,999999.0,16.475,1.134,3.035,6.299,14575.404,138.0,0.0,0.0,0.0 -9241.0,9241,,Block 2025,0,25,PedestrianZones,2299942.8150037327,145162.51660353338,10.0,0,0,0.0,0.0,0.0,0.0,,17575.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2025.0,410470002002025.0,1000000US410470002002025,0.0,0.0,80103.0,0.0,128.0,44.944757,-123.035518,0.0,1.0,8006502025,80068.0,0.0,0.0,52154.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,15.0,1.59,1117.0,0.0,0.0,0.0,1.0,189140.47,1740.49,1.0,,,65.0,80065.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.342063989947293,0.056,999999.0,25.824,4.1,2.325,3.832,18979.48,128.0,0.2038684750465361,3.442207732520073,0.912884261147903 -9242.0,9242,,Block 2026,0,25,PedestrianZones,2300070.3009949927,145113.96515162263,10.0,0,0,0.0,0.0,0.0,0.0,,18114.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,28,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2026.0,410470002002026.0,1000000US410470002002026,0.0,0.07,80103.0,0.0,137.0,44.9443563,-123.033884,0.0,3.0,8006502026,80068.0,0.0,0.0,52155.0,0.0,0.0,0.0,0.0,,,,0,0.0,8.83,0.67,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,194941.1,1765.64,1.0,,,65.0,80065.0,2.0,53.0,57.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.475227928886288,0.123,999999.0,40.167,2.636,2.223,3.997,28265.514,137.0,0.2045563383434192,3.4365930813015773,0.912881642712332 -9243.0,9243,,Block 2050,0,25,PedestrianZones,2299832.66523125,144511.64856727808,10.0,0,0,0.0,0.0,0.0,0.0,,15633.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,6,42,0,6,0,17,7,0,18,0,0,0,0,0,0,154,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2050.0,410470002002050.0,1000000US410470002002050,0.0,0.01,80103.0,0.0,117.0,44.9388714,-123.0366542,0.0,3.0,8006702050,80068.0,0.0,0.0,52156.0,0.0,0.0,0.0,0.0,,,,0,0.0,96.5,0.5,0.0,1.5,18.0,0.0,71.0,0.0,0.0,0.0,1.0,168241.69,1646.55,1.0,,,67.0,80067.0,2.0,193.0,194.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.862294436055076,0.127,999999.0,36.193,2.441,1.829,2.876,25004.185,117.0,0.20398916271854,3.438955553539973,0.9131521189645252 -9244.0,9244,,Block 3041,0,25,PedestrianZones,2299536.081176075,144500.3266624253,10.0,0,0,0.0,0.0,0.0,0.0,,16499.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3041.0,410470002003041.0,1000000US410470002003041,0.0,0.0,80103.0,0.0,92.0,44.9386858,-123.0404057,0.0,3.0,8007203041,80068.0,0.0,0.0,52157.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,7.0,0.0,0.0,0.0,1.0,177562.24,1691.44,1.0,,,72.0,80072.0,2.0,134.0,134.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.076264500375428,0.107,999999.0,35.581,2.837,2.054,3.285,24873.987,92.0,0.2026221866915225,3.444490908159214,0.912266244950934 -9258.0,9258,,Block 1026,0,25,PedestrianZones,2301203.996551137,146189.4019040201,10.0,0,0,0.0,0.0,0.0,0.0,,9410.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1026.0,410470003001026.0,1000000US410470003001026,0.0,0.81,80103.0,0.0,157.0,44.9543488,-123.01995,0.0,1.0,8009701026,80082.0,0.0,0.0,52195.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,101263.27,1316.89,1.0,,,97.0,80097.0,1.0,7.0,36.0,0.0,29.0,0.0,0.0,82.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.32468267616954,0.112,999999.0,4.54,0.184,4.037,9.224,8808.968,157.0,0.0,0.0,0.0 -9267.0,9267,,Block 1015,0,25,PedestrianZones,2301477.8910863204,145995.9157308395,10.0,0,0,0.0,0.0,0.0,0.0,,14854.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1015.0,410470006001015.0,1000000US410470006001015,0.0,0.4799999999999999,80103.0,0.0,137.0,44.9526852,-123.016404,0.0,3.0,8009801015,80082.0,0.0,0.0,52204.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159855.79,1702.43,1.0,,,98.0,80098.0,1.0,16.0,31.0,0.0,15.0,0.0,0.0,32.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.66978068125405,0.268,999999.0,4.704,0.26,3.707,8.547,8480.937,137.0,0.0,0.0,0.0 -9271.0,9271,,Block 3047,0,25,PedestrianZones,2299678.9478758606,144124.39430891917,10.0,0,0,2.44,0.0,0.0,0.0,,64115.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,1,0,6,0,1385,0,0,0,0,0,0,5,0,0,691,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3047.0,410470002003047.0,1000000US410470002003047,8.81,0.02,80135.0,0.0,102.0,44.9353447,-123.0384468,0.0,3.0,8007503047,80068.0,0.0,0.0,52216.0,0.0,2.44,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,52.33,0.8299999999999998,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,1.0,689992.06,3963.77,1.0,,,75.0,80075.0,2.0,942.0,957.0,0.0,15.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.840024058854732,0.141,999999.0,69.708,1.367,2.043,3.229,46679.696,102.0,0.0,0.0,0.0 -9276.0,9276,,Block 3060,0,25,PedestrianZones,2299763.266650693,143829.87148026656,10.0,0,0,0.96,0.0,0.0,0.0,,50457.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3060.0,410470002003060.0,1000000US410470002003060,0.0,0.0,80135.0,0.0,101.0,44.9327193,-123.0372618,0.0,1.0,8007603060,80068.0,0.0,0.0,52221.0,0.0,0.96,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,1.0,543004.88,3284.43,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.465665753605077,0.167,999999.0,39.698,0.394,1.251,1.982,26675.041,101.0,0.2035755926875561,3.430336985424824,0.911427691110462 -9277.0,9277,,Block 3036,0,25,PedestrianZones,2300044.705841668,144304.80374753423,10.0,0,0,0.0,0.0,0.0,0.0,,14868.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3036.0,410470002003036.0,1000000US410470002003036,0.0,0.0,80103.0,0.0,134.0,44.9370708,-123.0338866,0.0,3.0,8007903036,80068.0,0.0,0.0,52222.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,160005.84,1610.79,1.0,,,79.0,80079.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6732253887735538,0.184,999999.0,10.194,0.0,0.463,0.537,6868.315,134.0,0.2039719325842968,3.409631050688896,0.9080229560706714 -9285.0,9285,,Block 3038,0,25,PedestrianZones,2299898.5935417083,144315.0491544947,10.0,0,0,0.0,0.0,0.0,0.0,,14607.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,84,0,108,0,0,68,1,0,0,313,0,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3038.0,410470002003038.0,1000000US410470002003038,0.0,0.0,80103.0,0.0,128.0,44.9371217,-123.0357411,0.0,3.0,8007903038,80068.0,0.0,0.0,52236.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,0.0,0.0,0.0,1.0,157191.63,2425.34,1.0,,,79.0,80079.0,2.0,190.0,190.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6086201148630215,0.0,999999.0,48.0,1.794,2.345,3.689,33081.088,128.0,0.2031476827543136,3.4176696300907903,0.9082205511036644 -9286.0,9286,,Block 2024,0,25,PedestrianZones,2299815.995369958,145210.17467686426,10.0,0,0,0.0,0.0,0.0,0.0,,17956.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,59,0,0,102,0,0,0.0,242.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2024.0,410470002002024.0,1000000US410470002002024,0.0,0.0,80103.0,0.0,121.0,44.9451499,-123.0371432,0.0,3.0,8006402024,80068.0,0.0,0.0,52238.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,1.0,193243.76,1758.72,1.0,,,64.0,80064.0,2.0,69.0,69.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.436262272204774,0.048,999999.0,34.092,2.405,2.078,3.818,24262.438,121.0,0.2032550270125775,3.446284977337124,0.9127295628705454 -9288.0,9288,,Block 1002,0,25,PedestrianZones,2302177.2182824262,145936.2977168148,10.0,0,0,0.0,0.0,0.0,0.0,,27697.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1002.0,410470006001002.0,1000000US410470006001002,0.0,0.88,80103.0,0.0,90.0,44.9523446,-123.0075218,0.0,1.0,8009901002,80377.0,0.0,0.0,52242.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.06,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,298064.35,2910.52,1.0,,,99.0,80099.0,1.0,4.0,32.0,0.0,28.0,0.0,0.0,64.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.842609987076379,0.195,999999.0,3.432,0.136,2.785,6.434,6313.815,90.0,0.0,0.0,0.0 -9299.0,9299,,Block 1014,0,25,PedestrianZones,2301639.280826336,145931.72808177772,10.0,0,0,0.0,0.0,0.0,0.0,,13735.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1014.0,410470006001014.0,1000000US410470006001014,0.0,0.95,80103.0,0.0,121.0,44.9521531,-123.0143343,0.0,1.0,8009801014,80082.0,0.0,0.0,52262.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147809.69,1641.04,1.0,,,98.0,80098.0,1.0,1.0,21.0,0.0,20.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.39324067627652,0.122,999999.0,4.322,0.146,3.481,8.055,7921.317,121.0,0.0,0.0,0.0 -9361.0,9361,,Block 3050,0,25,PedestrianZones,2299318.3092068303,143952.14360748677,10.0,0,0,0.0,0.0,0.0,0.0,,15540.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,124,72,17,0,3,71,0,239,6,0,0,1,0,36,837,8,16,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3050.0,410470002003050.0,1000000US410470002003050,0.0,0.03,80135.0,0.0,79.0,44.9336933,-123.042945,0.0,3.0,8007103050,80068.0,0.0,0.0,52337.0,0.0,0.0,0.0,0.0,,,,0,0.0,33.6,0.87,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,167234.68,1633.63,1.0,,,71.0,80071.0,2.0,504.0,517.0,0.0,13.0,0.0,0.0,15.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.8391766554105615,0.037,999999.0,32.571,0.447,2.255,4.338,23621.843,79.0,0.0,0.0,0.0 -9363.0,9363,,Block 3049,0,25,PedestrianZones,2299450.087377436,143907.12042055893,10.0,0,0,0.0,0.0,0.0,0.0,,14194.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3049.0,410470002003049.0,1000000US410470002003049,0.0,0.57,80135.0,0.0,85.0,44.9333256,-123.0412584,0.0,2.0,8007403049,80068.0,0.0,0.0,52339.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.63,0.8399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152749.15,1550.09,1.0,,,74.0,80074.0,2.0,12.0,28.0,0.0,16.0,0.0,0.0,19.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.506634877532228,0.118,999999.0,34.405,0.399,2.083,3.859,24489.155,85.0,0.0,0.0,0.0 -9376.0,9376,,Block 3048,0,25,PedestrianZones,2299574.546831437,143856.39414132255,10.0,0,0,0.0,0.0,0.0,0.0,,14731.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.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.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3048.0,410470002003048.0,1000000US410470002003048,0.0,0.7199999999999999,80135.0,0.0,93.0,44.9329046,-123.0396621,0.0,1.0,8007403048,80068.0,0.0,0.0,52352.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.33,0.87,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,158527.57,1619.15,1.0,,,74.0,80074.0,2.0,5.0,18.0,0.0,13.0,0.0,0.0,15.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.639288927522809,0.137,999999.0,38.579,0.444,2.391,4.431,27526.741,93.0,0.0,0.0,0.0 -9379.0,9379,,Block 3039,0,25,PedestrianZones,2299788.9670022395,144401.7043202601,10.0,0,0,0.0,0.0,0.0,0.0,,16308.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,10,0,28,0,64,1,0,13,0,0,0,24,0,0,177,16,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3039.0,410470002003039.0,1000000US410470002003039,0.0,0.14,80103.0,0.0,113.0,44.9378702,-123.0371639,0.0,3.0,8007203039,80068.0,0.0,0.0,52355.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.61,0.75,0.0,1.5,18.0,0.0,50.0,0.0,0.0,0.0,1.0,175503.81,1677.9,1.0,,,72.0,80072.0,2.0,166.0,193.0,0.0,27.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.02900953473737,0.033,999999.0,60.761,1.271,2.026,3.178,40921.284,113.0,0.2034571667954957,3.432716999910365,0.9114016885698728 -9380.0,9380,,Block 3053,0,25,PedestrianZones,2299855.8554525934,144132.9986999479,10.0,0,0,0.4899999999999999,0.0,0.0,0.0,,43189.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,117,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3053.0,410470002003053.0,1000000US410470002003053,157.36,0.3499999999999999,80135.0,0.0,116.0,44.9354721,-123.0362099,0.0,3.0,8007903053,80068.0,0.0,0.0,52356.0,0.0,0.4899999999999999,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,1.1,0.5999999999999999,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,1.0,464791.91,3202.47,1.0,,,79.0,80079.0,2.0,113.0,175.0,0.0,62.0,0.0,0.0,103.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.670144707138132,0.117,999999.0,68.397,0.669,0.83,1.325,44621.746,116.0,0.2023680823391087,3.405508889556149,0.905063224373187 -9381.0,9381,,Block 3052,0,25,PedestrianZones,2299863.897134002,143940.1493450763,10.0,0,0,2.8,0.0,0.0,0.0,,36028.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,129,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3052.0,410470002003052.0,1000000US410470002003052,0.0,0.0,80135.0,0.0,103.0,44.9337397,-123.0360314,0.0,3.0,8007603052,80068.0,0.0,0.0,52357.0,0.0,2.8,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,387729.76,2708.68,1.0,,,76.0,80076.0,2.0,134.0,134.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.901042550274276,0.067,999999.0,56.104,0.41,1.161,1.856,37094.441,103.0,0.2025162477998882,3.403958835499553,0.90524088020002 -9382.0,9382,,Block 3037,0,25,PedestrianZones,2299989.9911030866,144240.88618443563,10.0,0,0,0.0,0.0,0.0,0.0,,22952.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3037.0,410470002003037.0,1000000US410470002003037,0.0,1.0,80103.0,0.0,125.0,44.9364804,-123.0345541,0.0,1.0,8007903037,80068.0,0.0,0.0,52358.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,247001.06,2877.55,1.0,,,79.0,80079.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.670359177259351,0.184,999999.0,10.194,0.0,0.463,0.537,6868.315,125.0,0.2033753601359847,3.411907968466856,0.9075772726982848 -9383.0,9383,,Block 3031,0,25,PedestrianZones,2300291.2242436446,144461.3825588729,10.0,0,0,0.0,0.0,0.0,0.0,,62942.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,541,0,0,1706,0,0,0,1,0,1,2151,0,18,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3031.0,410470002003031.0,1000000US410470002003031,0.97,0.0,80103.0,0.0,128.0,44.9385487,-123.0308269,0.0,3.0,8008003031,80068.0,0.0,0.0,52359.0,0.0,11.87,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,330.5,1.0,0.0,0.8,0.0,0.0,175.0,0.0,0.0,0.0,1.0,677368.08,3988.08,1.0,,,80.0,80080.0,2.0,661.0,663.0,0.0,2.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.550217733250468,0.061,999999.0,46.593,0.698,2.483,4.142,32470.105,128.0,0.2050007417633885,3.4057014772631686,0.9086508394214928 -9384.0,9384,,Block 3032,0,25,PedestrianZones,2300086.917410169,144409.57180725492,10.0,0,0,0.0,0.0,0.0,0.0,,16397.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3032.0,410470002003032.0,1000000US410470002003032,0.0,0.0,80103.0,0.0,143.0,44.9380251,-123.0333937,0.0,3.0,8007903032,80068.0,0.0,0.0,52360.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,176458.62,1686.79,1.0,,,79.0,80079.0,2.0,11.0,11.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.050928892917254,0.158,999999.0,68.427,0.006,1.668,2.845,45614.308,143.0,0.2046986937533556,3.415278674181814,0.9099588264095384 -9385.0,9385,,Block 2054,0,25,PedestrianZones,2300180.9331442146,144647.5795597357,10.0,0,0,0.0,0.0,0.0,0.0,,18459.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,22,0,3,3,0,5,0,0,0,12,0,0,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2054.0,410470002002054.0,1000000US410470002002054,0.0,0.0,80103.0,0.0,130.0,44.9401924,-123.0322976,0.0,3.0,8006802054,80068.0,0.0,0.0,52361.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,0.0,0.0,0.0,1.0,198651.0,1783.97,1.0,,,68.0,80068.0,2.0,57.0,57.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.560395427797621,0.044,999999.0,43.626,3.215,1.304,2.006,29204.772,130.0,0.2060510721659733,3.422873264885615,0.91293169373375 -9386.0,9386,,Block 3061,0,25,PedestrianZones,2299938.3080386785,143707.7064613832,10.0,0,0,0.0,0.0,0.0,0.0,,10920.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,27,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3061.0,410470002003061.0,1000000US410470002003061,0.0,0.0,80135.0,0.0,118.0,44.9316699,-123.0349967,0.0,3.0,8007603061,80068.0,0.0,0.0,52362.0,0.0,0.0,0.0,0.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,117522.06,1494.42,1.0,,,76.0,80076.0,2.0,41.0,41.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.697932937637546,0.096,999999.0,36.989,0.333,1.169,2.091,25011.317,118.0,0.0,0.0,0.0 -9387.0,9387,,Block 3054,0,25,PedestrianZones,2299978.4719024324,144091.37554035062,10.0,0,0,0.0,0.0,0.0,0.0,,11422.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3054.0,410470002003054.0,1000000US410470002003054,0.0,1.0,80103.0,0.0,117.0,44.9351323,-123.0346406,0.0,1.0,8007903054,80068.0,0.0,0.0,52363.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,122916.93,1426.83,1.0,,,79.0,80079.0,2.0,0.0,2.0,0.0,2.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8217819653664664,0.165,999999.0,50.785,0.0,0.671,1.003,33144.496,117.0,0.2026127057781117,3.3947953285647148,0.903585986828544 -9388.0,9388,,Block 3059,0,25,PedestrianZones,2300164.017667287,143760.93454450203,10.0,0,0,0.0,0.0,0.0,0.0,,17346.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3059.0,410470002003059.0,1000000US410470002003059,0.0,0.0,80135.0,0.0,128.0,44.9322124,-123.0321597,0.0,1.0,8007603059,80068.0,0.0,0.0,52364.0,0.0,0.0,0.0,0.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,186677.66,2148.8,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.285525686693013,0.131,999999.0,35.81,0.006,0.866,1.654,23977.414,128.0,0.0,0.0,0.0 -9417.0,9417,,Block 2005,0,25,PedestrianZones,2308716.351850244,140369.02053032603,10.0,0,0,0.0,0.0,0.0,0.0,,1647939.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22005.0,410470027022005.0,1000000US410470027022005,0.0,0.95,80309.0,0.0,13.0,44.9040615,-122.9225695,0.0,1.0,8009622005,80299.0,0.0,0.0,52394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,17734898.1,22089.97,1.0,,,96.0,80096.0,1.0,6.0,130.0,0.0,124.0,0.0,0.0,351.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,407.1368784258924,999999.0,999999.0,0.02,0.0,0.305,0.862,564.331,13.0,0.0,0.0,0.0 -9427.0,9427,,Block 2006,0,25,PedestrianZones,2309342.3510305006,140629.18540239343,10.0,0,0,0.0,0.0,0.0,0.0,,83450.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22006.0,410470027022006.0,1000000US410470027022006,0.0,0.82,80309.0,0.0,18.0,44.9065704,-122.9147445,0.0,1.0,8009622006,80299.0,0.0,0.0,52407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,898078.91,5134.03,1.0,,,96.0,80096.0,1.0,2.0,11.0,0.0,9.0,0.0,0.0,23.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.617036635725515,999999.0,999999.0,0.049,0.0,0.437,1.116,745.015,18.0,0.0,0.0,0.0 -9477.0,9477,,Block 1032,0,25,PedestrianZones,2302339.20009268,145675.15325242272,10.0,0,0,0.0,0.0,0.0,0.0,,12309.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1032.0,410470006001032.0,1000000US410470006001032,0.0,1.0,80103.0,0.0,113.0,44.9500408,-123.0053673,0.0,1.0,8009901032,80377.0,0.0,0.0,57882.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132462.83,1517.74,1.0,,,99.0,80099.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.040925373562052,0.017,999999.0,1.57,0.162,3.584,8.786,6627.93,113.0,0.0,0.0,0.0 -9489.0,9489,,Block 1028,0,25,PedestrianZones,2301726.51868818,145785.894696486,10.0,0,0,0.0,0.0,0.0,0.0,,4778.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1028.0,410470006001028.0,1000000US410470006001028,0.0,1.0,80103.0,0.0,124.0,44.9508657,-123.0131717,0.0,1.0,8009801028,80082.0,0.0,0.0,57905.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,1.0,51416.12,1037.75,1.0,,,98.0,80098.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.1803506418326888,0.163,999999.0,2.869,0.183,3.778,8.71,7410.949,124.0,0.0,0.0,0.0 -9498.0,9498,,Block 2021,0,25,PedestrianZones,2299176.261753756,144465.96931872176,10.0,0,0,0.79,0.0,0.0,0.0,,0.0,41462.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,5.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2021.0,410470002002021.0,1000000US410470002002021,0.0,0.0,80135.0,0.0,63.0,44.9416676,-123.0449529,0.0,1.0,8006102021,80068.0,0.0,0.0,57915.0,0.0,0.79,0.0,3.0,URBAN PARK,DEVELOPED,,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,446210.83,8050.93,1.0,,,61.0,80061.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.24358197987899,0.511,999999.0,2.054,0.0,0.0,0.0,1314.583,63.0,0.0,0.0,0.0 -9540.0,9540,,Block 2018,0,25,PedestrianZones,2309559.357502826,138564.14822679968,10.0,0,0,0.0,0.0,0.0,0.0,,87709.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80295.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22018.0,410470027022018.0,1000000US410470027022018,0.0,0.8299999999999998,80309.0,0.0,11.0,44.888053,-122.9112174,0.0,1.0,8009622018,80299.0,0.0,0.0,58030.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,943918.42,5332.61,1.0,,,96.0,80096.0,1.0,3.0,18.0,0.0,15.0,0.0,0.0,39.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.66936597008252,999999.0,999999.0,0.0,0.0,0.304,0.835,534.482,11.0,0.0,0.0,0.0 -9543.0,9543,,Block 6007,0,25,PedestrianZones,2300863.109714824,144517.66092709012,10.0,0,0,0.0,0.0,0.0,0.0,,15042.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6007.0,410470009006007.0,1000000US410470009006007,0.0,0.97,80103.0,0.0,143.0,44.9392159,-123.0236066,0.0,1.0,8010606007,80068.0,0.0,0.0,58069.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4799999999999999,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,161881.41,1614.23,1.0,,,106.0,80106.0,1.0,3.0,88.0,0.0,85.0,0.0,0.0,178.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.716282498228135,0.015,999999.0,38.363,0.47,3.597,6.823,28918.86,143.0,0.2042659087023795,3.344101976136923,0.8973835898090081 -9544.0,9544,,Block 6006,0,25,PedestrianZones,2301064.48434442,144413.9548329316,10.0,0,0,0.0,0.0,0.0,0.0,,24942.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6006.0,410470009006006.0,1000000US410470009006006,0.0,0.7099999999999999,80103.0,0.0,158.0,44.9379848,-123.019913,0.0,1.0,8010606006,80082.0,0.0,0.0,58070.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.28,0.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,268417.4,3198.31,1.0,,,106.0,80106.0,1.0,7.0,24.0,0.0,17.0,0.0,0.0,25.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.162010078860419,0.218,999999.0,22.417,0.487,4.102,7.655,19245.713,158.0,0.0,0.0,0.0 -9545.0,9545,,Block 3034,0,25,PedestrianZones,2300554.2946093767,144358.73381767803,10.0,0,0,0.0,0.0,0.0,0.0,,12535.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,495,1,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3034.0,410470002003034.0,1000000US410470002003034,0.0,0.0,80103.0,0.0,141.0,44.9376995,-123.0274546,0.0,3.0,8008003034,80068.0,0.0,0.0,58071.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,79.0,0.0,0.0,0.0,1.0,134903.94,1494.85,1.0,,,80.0,80080.0,2.0,359.0,359.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0969656096161136,0.039,999999.0,43.593,0.502,3.508,6.893,32311.314,141.0,0.2051473949354841,3.368994128008373,0.9027278795189088 -9547.0,9547,,Block 3064,0,25,PedestrianZones,2300105.526779003,143666.39625705505,10.0,0,0,0.0,0.0,0.0,0.0,,30135.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3064.0,410470002003064.0,1000000US410470002003064,0.0,0.0,80135.0,0.0,129.0,44.9313455,-123.0328629,0.0,1.0,8007603064,80068.0,0.0,0.0,58074.0,0.0,0.0,0.0,0.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,324302.73,2263.34,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.444959665123545,0.14,999999.0,33.739,0.061,0.879,1.794,22741.465,129.0,0.0,0.0,0.0 -9548.0,9548,,Block 3062,0,25,PedestrianZones,2300294.3198663807,143695.73084003158,10.0,0,0,0.0,0.0,0.0,0.0,,13025.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,85,6,0,0,0,0,0,0,0,0,57,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3062.0,410470002003062.0,1000000US410470002003062,0.0,0.0,80135.0,0.0,138.0,44.9316626,-123.0304839,0.0,3.0,8007703062,80068.0,0.0,0.0,58075.0,0.0,0.0,0.0,0.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,140174.59,1497.23,1.0,,,77.0,80077.0,2.0,61.0,61.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.217962978124062,0.053,999999.0,44.275,0.114,0.884,2.09,29674.025,138.0,0.0,0.0,0.0 -9553.0,9553,,Block 6016,0,25,PedestrianZones,2300656.147134196,144318.47976794065,10.0,0,0,0.0,0.0,0.0,0.0,,16686.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,105,0,0,5,0,0,0,0,0,0,257,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6016.0,410470009006016.0,1000000US410470009006016,0.0,0.0,80103.0,0.0,145.0,44.9373661,-123.0261488,0.0,3.0,8010606016,80068.0,0.0,0.0,58081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140.0,0.0,0.0,0.0,1.0,179573.36,1695.74,1.0,,,106.0,80106.0,1.0,419.0,419.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.122433518466191,0.098,999999.0,26.746,0.524,4.031,7.77,22090.473,145.0,0.204630258670604,3.3566987189695743,0.8999366875866964 -9554.0,9554,,Block 4006,0,25,PedestrianZones,2300611.9529682174,144204.86594522488,10.0,0,0,0.0,0.0,0.0,0.0,,13666.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,2,34,0,0,0,346,0,0,0,0,0,0,0,0,0,348,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4006.0,410470009004006.0,1000000US410470009004006,0.0,0.0,80103.0,0.0,149.0,44.9363317,-123.0266634,0.0,3.0,8011004006,80068.0,0.0,0.0,58082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,62.0,0.0,0.0,0.0,1.0,147073.46,1535.79,1.0,,,110.0,80110.0,1.0,345.0,345.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3763391810153784,0.113,999999.0,27.379,0.524,3.931,7.631,22406.661,149.0,0.2040789840129429,3.3542128986053195,0.8986577024239982 -9555.0,9555,,Block 4005,0,25,PedestrianZones,2300720.781854764,144160.3179352529,10.0,0,0,0.0,0.0,0.0,0.0,,12980.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,161,0,73,0,0,0,0,0,0,0,0,0,280,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4005.0,410470009004005.0,1000000US410470009004005,0.0,0.0,80103.0,0.0,157.0,44.9359616,-123.0252676,0.0,3.0,8011004005,80068.0,0.0,0.0,58083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,319.0,0.0,0.0,0.0,1.0,139686.34,1521.6,1.0,,,110.0,80110.0,1.0,283.0,283.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.206754320779416,0.033,999999.0,23.382,0.477,4.139,7.84,19982.088,157.0,0.2035012492671106,3.340452424058453,0.8955140504332477 -9566.0,9566,,Block 2004,0,25,PedestrianZones,2299743.290477542,145430.64825868487,10.0,0,0,0.0,0.0,0.0,0.0,,4397.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2004.0,410470002002004.0,1000000US410470002002004,0.0,0.0,80103.0,0.0,118.0,44.9471125,-123.0381518,0.0,3.0,8006102004,80068.0,0.0,0.0,58104.0,0.0,0.0,0.0,0.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,47322.98,1059.63,1.0,,,61.0,80061.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.086385099439985,0.389,999999.0,9.344,0.612,0.426,0.667,6407.304,118.0,0.0,0.0,0.0 -9577.0,9577,,Block 2057,0,25,PedestrianZones,2299947.582585637,144431.29607162514,10.0,0,0,0.0,0.0,0.0,0.0,,7396.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2057.0,410470002002057.0,1000000US410470002002057,0.0,0.0,80103.0,0.0,135.0,44.9381811,-123.0351669,0.0,1.0,8006702057,80068.0,0.0,0.0,58115.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,79589.30999999998,1251.3,1.0,,,67.0,80067.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.827117539440176,0.143,999999.0,69.503,0.0,1.025,1.533,45462.993,135.0,0.2042106905722836,3.4268945538685407,0.9113939337354714 -9601.0,9601,,Block 2053,0,25,PedestrianZones,2300052.969873708,144696.38181017313,10.0,0,0,0.0,0.0,0.0,0.0,,18407.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,56,5,0,0,0,0,0,0,0,0,0,169,0,0,219,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2053.0,410470002002053.0,1000000US410470002002053,0.0,0.01,80103.0,0.0,129.0,44.9405953,-123.0339376,0.0,3.0,8006802053,80068.0,0.0,0.0,58144.0,0.0,0.0,0.0,0.0,,,,0,0.0,96.5,0.5,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,1.0,198095.83,1780.55,1.0,,,68.0,80068.0,2.0,193.0,194.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.547650429286225,0.046,999999.0,40.794,2.114,1.979,3.227,28173.976,129.0,0.2053806496622368,3.435405705960382,0.914174555332702 -9622.0,9622,,Block 1007,0,25,PedestrianZones,2302008.2355696,145918.8009218777,10.0,0,0,0.0,0.0,0.0,0.0,,17551.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1007.0,410470006001007.0,1000000US410470006001007,0.0,1.0,80103.0,0.0,95.0,44.95214,-123.0096555,0.0,1.0,8009901007,80082.0,0.0,0.0,58194.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,188877.15,1786.03,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.336018984605468,0.127,999999.0,3.613,0.149,2.925,6.636,6559.208,95.0,0.0,0.0,0.0 -9630.0,9630,,Block 3057,0,25,PedestrianZones,2300185.7216457254,143867.06891863825,10.0,0,0,0.0,0.0,0.0,0.0,,53729.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,14,0,0,0,0,339,0,6,0,0,0,0,0,0,240,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3057.0,410470002003057.0,1000000US410470002003057,0.0,0.0,80135.0,0.0,127.0,44.9331732,-123.031927,0.0,3.0,8007703057,80068.0,0.0,0.0,58211.0,0.0,0.0,0.0,0.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,578212.85,3741.81,1.0,,,77.0,80077.0,2.0,434.0,434.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,13.273928910705024,0.17,999999.0,36.647,0.0,0.813,1.608,24483.206,127.0,0.0,0.0,0.0 -9631.0,9631,,Block 4046,0,25,PedestrianZones,2300353.921107076,145880.97941460102,10.0,0,0,0.0,0.0,0.0,0.0,,10895.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4046.0,410470003004046.0,1000000US410470003004046,0.0,0.0,80103.0,0.0,153.0,44.9513355,-123.0305962,0.0,3.0,8009004046,80068.0,0.0,0.0,58212.0,0.0,0.0,0.0,0.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,117248.2,1373.93,1.0,,,90.0,80090.0,1.0,15.0,15.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6916460312091983,0.063,999999.0,7.566,0.237,3.738,7.746,9799.842,153.0,0.0,0.0,0.0 -9657.0,9657,,Block 3007,0,25,PedestrianZones,2300864.4428067342,145356.5307695749,10.0,0,0,0.0,0.0,0.0,0.0,,8338.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3007.0,410470002003007.0,1000000US410470002003007,0.0,0.78,80103.0,0.0,145.0,44.9467618,-123.0239217,0.0,1.0,8008303007,80082.0,0.0,0.0,59377.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.22,0.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,89731.88,1255.78,1.0,,,83.0,80083.0,2.0,2.0,9.0,0.0,7.0,0.0,0.0,9.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.059958673879028,0.133,999999.0,21.853,0.053,4.288,9.136,19833.239,145.0,0.0,0.0,0.0 -9672.0,9672,,Block 1003,0,25,PedestrianZones,2299991.9251455567,146349.94330205323,10.0,0,0,0.0,0.0,0.0,0.0,,9392.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1003.0,410470002001003.0,1000000US410470002001003,0.0,0.0,80103.0,0.0,101.0,44.9554516,-123.0353681,0.0,1.0,8008501003,80068.0,0.0,0.0,59410.0,0.0,0.0,0.0,0.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,101079.15,1235.85,1.0,,,85.0,80085.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.3204560141099035,0.361,999999.0,4.191,0.083,2.465,4.535,5584.623,101.0,0.0,0.0,0.0 -9682.0,9682,,Block 6000,0,25,PedestrianZones,2301675.97870163,144454.1943385967,10.0,0,0,0.0,0.0,0.0,0.0,,9026.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6000.0,410470009006000.0,1000000US410470009006000,0.0,0.88,80103.0,0.0,135.0,44.938873,-123.013287,0.0,1.0,8010806000,80082.0,0.0,0.0,59440.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,97140.26,1599.98,1.0,,,108.0,80108.0,1.0,2.0,16.0,0.0,14.0,0.0,0.0,24.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.2300315530410395,0.014,999999.0,3.057,0.092,3.999,8.33,7287.65,135.0,0.0,0.0,0.0 -9683.0,9683,,Block 6019,0,25,PedestrianZones,2301624.3986515687,144314.5959723326,10.0,0,0,0.0,0.0,0.0,0.0,,4653.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6019.0,410470009006019.0,1000000US410470009006019,0.0,0.0,80103.0,0.0,141.0,44.9376029,-123.0138852,0.0,1.0,8010806019,80082.0,0.0,0.0,59441.0,0.0,0.0,0.0,0.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,50075.66,961.83,1.0,,,108.0,80108.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.149577843843401,0.174,999999.0,9.146,0.137,3.937,8.552,11326.829,141.0,0.0,0.0,0.0 -9689.0,9689,,Block 4024,0,25,PedestrianZones,2300868.6212674025,146361.79698663033,10.0,0,0,0.0,0.0,0.0,0.0,,16692.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4024.0,410470003004024.0,1000000US410470003004024,0.0,1.0,80103.0,0.0,165.0,44.9558053,-123.0242667,0.0,1.0,8009204024,80082.0,0.0,0.0,59460.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,179637.74,1695.26,1.0,,,92.0,80092.0,1.0,0.0,21.0,0.0,21.0,0.0,0.0,55.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.123911461260214,0.147,999999.0,4.327,0.155,4.139,9.44,8810.95,165.0,0.0,0.0,0.0 -9690.0,9690,,Block 4023,0,25,PedestrianZones,2300959.5490370705,146513.31730526924,10.0,0,0,0.0,0.0,0.0,0.0,,17021.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.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.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4023.0,410470003004023.0,1000000US410470003004023,0.0,1.0,80103.0,0.0,160.0,44.9571937,-123.0231748,0.0,1.0,8009204023,80417.0,0.0,0.0,59461.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,183171.17,1746.44,1.0,,,92.0,80092.0,1.0,0.0,23.0,0.0,23.0,0.0,0.0,51.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.205027646596314,0.157,999999.0,4.249,0.194,3.897,9.035,8501.704,160.0,0.0,0.0,0.0 -9695.0,9695,,Block 3000,0,25,PedestrianZones,2300487.1346364017,147002.54320926665,10.0,0,0,0.0,0.0,0.0,0.0,,20981.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,8,58,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3000.0,410470003003000.0,1000000US410470003003000,0.0,0.22,80103.0,0.0,131.0,44.9614613,-123.0293537,0.0,3.0,8008803000,80417.0,0.0,0.0,59477.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.88,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,225797.92,1942.1,1.0,,,88.0,80088.0,1.0,46.0,59.0,0.0,13.0,0.0,0.0,16.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.183602432886099,0.071,999999.0,3.345,0.111,2.863,6.233,6129.883,131.0,0.0,0.0,0.0 -9696.0,9696,,Block 3020,0,25,PedestrianZones,2300259.5443547457,146625.59111627995,10.0,0,0,0.0,0.0,0.0,0.0,,11505.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3020.0,410470003003020.0,1000000US410470003003020,0.0,0.2999999999999999,80103.0,0.0,125.0,44.9580066,-123.0320874,0.0,3.0,8008803020,80417.0,0.0,0.0,59478.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,123814.08,1405.68,1.0,,,88.0,80088.0,1.0,16.0,23.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8423775537029496,0.136,999999.0,4.648,0.144,2.187,3.891,5465.119,125.0,0.0,0.0,0.0 -9697.0,9697,,Block 3035,0,25,PedestrianZones,2300368.332139916,146202.62807287995,10.0,0,0,0.0,0.0,0.0,0.0,,10454.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3035.0,410470003003035.0,1000000US410470003003035,0.0,1.0,80103.0,0.0,155.0,44.9542327,-123.0305413,0.0,1.0,8008903035,80082.0,0.0,0.0,59479.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112501.8,1345.1,1.0,,,89.0,80089.0,2.0,0.0,31.0,0.0,31.0,0.0,0.0,54.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.582683686621765,0.061,999999.0,6.033,0.216,3.482,7.077,8390.538,155.0,0.0,0.0,0.0 -9698.0,9698,,Block 4039,0,25,PedestrianZones,2300429.2239759117,146069.15905445913,10.0,0,0,0.0,0.0,0.0,0.0,,10621.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,7,0,0,0,35,0,0,0,0,0,0,0,0,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4039.0,410470003004039.0,1000000US410470003004039,0.0,0.03,80103.0,0.0,160.0,44.9530493,-123.029717,0.0,3.0,8009104039,80082.0,0.0,0.0,59480.0,0.0,0.0,0.0,0.0,,,,0,0.0,16.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114306.12,1352.29,1.0,,,91.0,80091.0,1.0,33.0,34.0,0.0,1.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.624105026759222,0.064,999999.0,6.256,0.206,3.771,8.026,9140.402,160.0,0.0,0.0,0.0 -9741.0,9741,,Block 2011,0,25,PedestrianZones,2309674.5588122974,139834.10655641576,10.0,0,0,0.0,0.0,0.0,0.0,,23676.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22011.0,410470027022011.0,1000000US410470027022011,0.0,1.0,80309.0,0.0,19.0,44.8995077,-122.9102392,0.0,1.0,8009622011,80299.0,0.0,0.0,64111.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,254796.36,2131.64,1.0,,,96.0,80096.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,6.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.849314447878537,999999.0,999999.0,1.924,0.0,0.137,0.412,1495.215,19.0,0.0,0.0,0.0 -9742.0,9742,,Block 2007,0,25,PedestrianZones,2309608.823791732,139941.41041401334,10.0,0,0,0.0,0.0,0.0,0.0,,35230.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,1,0,0,21,0,0,0,0,4,0,0,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22007.0,410470027022007.0,1000000US410470027022007,0.0,0.0,80309.0,0.0,20.0,44.9004552,-122.9111117,0.0,3.0,8009622007,80299.0,0.0,0.0,64112.0,0.0,0.0,0.0,0.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,379136.82,2705.7,1.0,,,96.0,80096.0,1.0,27.0,27.0,0.0,0.0,0.0,0.0,0.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.70377597969494,999999.0,999999.0,1.924,0.0,0.137,0.412,1495.215,20.0,0.0,0.0,0.0 -9769.0,9769,,Block 2006,0,25,PedestrianZones,2301023.1475151745,146053.46519481103,10.0,0,0,0.0,0.0,0.0,0.0,,13015.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2006.0,410470003002006.0,1000000US410470003002006,0.0,0.67,80103.0,0.0,160.0,44.9530753,-123.0221872,0.0,1.0,8009502006,80082.0,0.0,0.0,64179.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2399999999999999,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140067.1,1511.07,1.0,,,95.0,80095.0,1.0,9.0,27.0,0.0,18.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2154953135415028,0.097,999999.0,5.026,0.203,4.064,9.009,8982.032,160.0,0.0,0.0,0.0 -9770.0,9770,,Block 1021,0,25,PedestrianZones,2301100.4400224825,146276.79583619503,10.0,0,0,0.0,0.0,0.0,0.0,,18774.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1021.0,410470003001021.0,1000000US410470003001021,0.0,0.1799999999999999,80103.0,0.0,157.0,44.9551058,-123.0212964,0.0,3.0,8009701021,80082.0,0.0,0.0,64180.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.33,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,202031.72,2375.46,1.0,,,97.0,80097.0,1.0,28.0,34.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.638006035199375,0.113,999999.0,5.099,0.227,3.815,8.902,8961.139,157.0,0.0,0.0,0.0 -9771.0,9771,,Block 2001,0,25,PedestrianZones,2301175.4817228606,146103.1789057831,10.0,0,0,0.0,0.0,0.0,0.0,,11957.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2001.0,410470003002001.0,1000000US410470003002001,0.0,1.0,80103.0,0.0,159.0,44.9535652,-123.0202772,0.0,1.0,8009502001,80082.0,0.0,0.0,64181.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128674.47,1430.75,1.0,,,95.0,80095.0,1.0,0.0,24.0,0.0,24.0,0.0,0.0,50.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.953956844824192,0.065,999999.0,4.708,0.258,4.168,9.416,9039.488,159.0,0.0,0.0,0.0 -9772.0,9772,,Block 2009,0,25,PedestrianZones,2300986.5549299363,145958.8157964276,10.0,0,0,0.0,0.0,0.0,0.0,,13721.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2009.0,410470003002009.0,1000000US410470003002009,0.0,0.8599999999999999,80103.0,0.0,160.0,44.9522136,-123.0226133,0.0,1.0,8009502009,80082.0,0.0,0.0,64182.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147659.25,1559.66,1.0,,,95.0,80095.0,1.0,3.0,21.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3897869947186607,0.035,999999.0,5.007,0.219,4.178,9.175,9076.546,160.0,0.0,0.0,0.0 -9773.0,9773,,Block 2011,0,25,PedestrianZones,2301136.3141212687,146011.82165651588,10.0,0,0,0.0,0.0,0.0,0.0,,11067.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2011.0,410470003002011.0,1000000US410470003002011,0.0,0.33,80103.0,0.0,156.0,44.9527325,-123.0207372,0.0,3.0,8009502011,80082.0,0.0,0.0,64183.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.08,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119101.62,1387.22,1.0,,,95.0,80095.0,1.0,14.0,21.0,0.0,7.0,0.0,0.0,13.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7341946557830483,0.128,999999.0,5.075,0.179,4.117,9.151,9104.631,156.0,0.0,0.0,0.0 -9774.0,9774,,Block 1025,0,25,PedestrianZones,2301308.4377450454,146246.2575824905,10.0,0,0,0.0,0.0,0.0,0.0,,4146.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1025.0,410470003001025.0,1000000US410470003001025,0.0,0.75,80103.0,0.0,144.0,44.9548895,-123.0186494,0.0,1.0,8009701025,80082.0,0.0,0.0,64184.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.17,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,44613.8,958.68,1.0,,,97.0,80097.0,1.0,2.0,8.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0241911071881311,0.156,999999.0,4.927,0.19,3.874,8.93,8868.411,144.0,0.0,0.0,0.0 -9821.0,9821,,Block 2030,0,25,PedestrianZones,2300327.081699028,145015.35692270767,10.0,0,0,0.0,0.0,0.0,0.0,,18975.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,12,22,0,67,0,0,0,1,0,0,73,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2030.0,410470002002030.0,1000000US410470002002030,0.0,0.5,80103.0,0.0,145.0,44.9435417,-123.0305926,0.0,2.0,8006802030,80068.0,0.0,0.0,64247.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5799999999999998,0.5999999999999999,0.0,0.0,0.0,0.0,53.0,0.0,0.0,0.0,1.0,204203.39,1807.2,1.0,,,68.0,80068.0,2.0,101.0,204.0,0.0,103.0,0.0,0.0,173.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.687860665949693,0.035,999999.0,43.442,0.994,2.676,4.996,31000.215,145.0,0.2058809242413754,3.414572094378836,0.911309584641199 -9822.0,9822,,Block 2031,0,25,PedestrianZones,2300274.947638844,144890.77584439336,10.0,0,0,0.0,0.0,0.0,0.0,,17969.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2031.0,410470002002031.0,1000000US410470002002031,0.0,0.12,80103.0,0.0,139.0,44.9424065,-123.0312034,0.0,3.0,8006802031,80068.0,0.0,0.0,64248.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.5,0.75,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,1.0,193374.65,1759.04,1.0,,,68.0,80068.0,2.0,44.0,50.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.439267181380672,0.037,999999.0,59.416,1.497,2.757,4.967,41205.121,139.0,0.2062311724459685,3.420588167575668,0.912741531360015 -9823.0,9823,,Block 3017,0,25,PedestrianZones,2300455.981794786,144968.3051089726,10.0,0,0,0.0,0.0,0.0,0.0,,19931.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3017.0,410470002003017.0,1000000US410470002003017,0.0,0.0,80103.0,0.0,140.0,44.9431548,-123.0289414,0.0,3.0,8008103017,80068.0,0.0,0.0,64249.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,344.0,0.0,0.0,0.0,1.0,214496.01,1855.7,1.0,,,81.0,80081.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.9241464602679,0.042,999999.0,46.015,0.741,3.33,6.161,33392.634,140.0,0.2060395764408707,3.401325946622117,0.9094197403769088 -9824.0,9824,,Block 3025,0,25,PedestrianZones,2300330.561177739,144731.66689102203,10.0,0,0,0.0,0.0,0.0,0.0,,10667.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,734,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3025.0,410470002003025.0,1000000US410470002003025,0.0,0.0,80103.0,0.0,126.0,44.940991,-123.0304359,0.0,3.0,8008003025,80068.0,0.0,0.0,64250.0,0.0,1.92,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,114796.17,1389.18,1.0,,,80.0,80080.0,2.0,550.0,550.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.635355118023744,0.081,999999.0,54.053,2.029,2.254,3.881,37077.305,126.0,0.2066552460211101,3.411449231123316,0.9118762251225256 -9825.0,9825,,Block 3018,0,25,PedestrianZones,2300531.695483472,145165.1253077645,10.0,0,0,0.02,0.0,0.0,0.0,,38737.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,2181,0,0,32,0,0,0,1,0,0,1943,0,5,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3018.0,410470002003018.0,1000000US410470002003018,0.0,0.0,80103.0,0.0,143.0,44.9449465,-123.0280604,0.0,3.0,8008203018,80082.0,0.0,0.0,64251.0,0.0,0.02,0.0,2.0,HISTORICAL AREA,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,133.0,0.0,0.0,0.0,1.0,416878.21,2683.96,1.0,,,82.0,80082.0,2.0,1450.0,1450.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.570198412373022,0.096,999999.0,62.023,0.641,2.632,4.298,42445.668,143.0,0.206132398647855,3.4084801075824336,0.9109333996467394 -9826.0,9826,,Block 3016,0,25,PedestrianZones,2300582.351935703,144916.82274397157,10.0,0,0,0.0,0.0,0.0,0.0,,18995.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,3,0,0,0,3645,0,0,2,0,0,0,0,0,0,2039,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3016.0,410470002003016.0,1000000US410470002003016,0.0,0.0,80103.0,0.0,129.0,44.9427273,-123.0273204,0.0,3.0,8008103016,80082.0,0.0,0.0,64252.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,0.0,0.0,31.0,0.0,0.0,0.0,1.0,204412.38,1819.62,1.0,,,81.0,80081.0,2.0,2457.0,2457.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.6926583417586665,0.036,999999.0,45.451,0.461,3.531,6.263,33096.938,129.0,0.2060293085768361,3.387190876148669,0.9071822959724988 -9827.0,9827,,Block 3024,0,25,PedestrianZones,2300414.582318245,144697.21048471477,10.0,0,0,0.0,0.0,0.0,0.0,,12877.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3024.0,410470002003024.0,1000000US410470002003024,0.0,0.0,80103.0,0.0,120.0,44.9407047,-123.0293582,0.0,1.0,8008003024,80068.0,0.0,0.0,64253.0,0.0,2.83,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.8,6.0,2.27,1445.0,0.0,0.0,0.0,1.0,138578.11,1502.52,1.0,,,80.0,80080.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.181312800808362,0.086,999999.0,57.475,0.86,3.46,6.281,40803.679,120.0,0.2066381030769182,3.4015803346292253,0.910333897538964 -9828.0,9828,,Block 3027,0,25,PedestrianZones,2300362.3406166336,144576.08000839772,10.0,0,0,0.0,0.0,0.0,0.0,,13640.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3027.0,410470002003027.0,1000000US410470002003027,0.0,0.0,80103.0,0.0,126.0,44.9396004,-123.0299717,0.0,1.0,8008003027,80068.0,0.0,0.0,64254.0,0.0,3.37,0.0,3.0,NEIGHBORHOOD PARK,,,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,146792.38,1546.16,1.0,,,80.0,80080.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3698862972112287,0.061,999999.0,46.593,0.698,2.483,4.142,32470.105,126.0,0.2064017281480498,3.401620857330685,0.9099104508664312 -9829.0,9829,,Block 3023,0,25,PedestrianZones,2300503.1721607526,144661.46916241935,10.0,0,0,0.0,0.0,0.0,0.0,,12147.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,530,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3023.0,410470002003023.0,1000000US410470002003023,0.0,0.0,80103.0,0.0,122.0,44.9404082,-123.028222,0.0,3.0,8008003023,80068.0,0.0,0.0,64255.0,0.0,2.2,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,1.0,130725.24,1470.02,1.0,,,80.0,80080.0,2.0,403.0,403.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0010358510886705,0.08,999999.0,50.45,0.697,3.317,6.105,36195.494,122.0,0.2065929275057554,3.3906388184867184,0.9085260085047993 -9830.0,9830,,Block 2015,0,25,PedestrianZones,2300787.592358128,145819.85350314877,10.0,0,0,0.0,0.0,0.0,0.0,,14358.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,45,0,0,0,0,0,0,0,0,58,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2015.0,410470003002015.0,1000000US410470003002015,0.0,0.14,80103.0,0.0,164.0,44.9509077,-123.0250786,0.0,3.0,8009402015,80082.0,0.0,0.0,64256.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.32,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,154522.36,1590.13,1.0,,,94.0,80094.0,1.0,73.0,85.0,0.0,12.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.547342137785809,0.042,999999.0,3.913,0.169,4.671,9.747,8742.198,164.0,0.0,0.0,0.0 -9831.0,9831,,Block 2021,0,25,PedestrianZones,2300751.4712620904,145725.6856254638,10.0,0,0,0.0,0.0,0.0,0.0,,13613.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2021.0,410470003002021.0,1000000US410470003002021,0.0,0.94,80103.0,0.0,162.0,44.9500506,-123.0254988,0.0,1.0,8009402021,80082.0,0.0,0.0,64257.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146497.05,1553.9,1.0,,,94.0,80094.0,1.0,1.0,16.0,0.0,15.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.363106491641818,0.099,999999.0,11.397,0.138,4.335,8.981,13041.607,162.0,0.0,0.0,0.0 -9832.0,9832,,Block 2013,0,25,PedestrianZones,2300952.99284122,145863.70923175444,10.0,0,0,0.0,0.0,0.0,0.0,,13818.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,46,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2013.0,410470003002013.0,1000000US410470003002013,0.0,0.23,80103.0,0.0,165.0,44.9513487,-123.0230008,0.0,3.0,8009502013,80082.0,0.0,0.0,64258.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.71,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,148702.68,1557.7,1.0,,,95.0,80095.0,1.0,41.0,53.0,0.0,12.0,0.0,0.0,24.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.413740722674959,0.102,999999.0,5.141,0.153,4.316,9.293,9237.895,165.0,0.0,0.0,0.0 -9833.0,9833,,Block 2016,0,25,PedestrianZones,2300916.1621374814,145769.23265358113,10.0,0,0,0.0,0.0,0.0,0.0,,14451.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2016.0,410470003002016.0,1000000US410470003002016,0.0,0.0,80103.0,0.0,157.0,44.9504886,-123.0234299,0.0,1.0,8009502016,80082.0,0.0,0.0,64259.0,0.0,0.0,0.0,0.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,155516.15,1594.66,1.0,,,95.0,80095.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5701563233237965,0.047,999999.0,5.42,0.156,4.151,8.754,9071.315,157.0,0.0,0.0,0.0 -9834.0,9834,,Block 3005,0,25,PedestrianZones,2300804.94438127,145484.42308933096,10.0,0,0,0.0,0.0,0.0,0.0,,15222.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3005.0,410470002003005.0,1000000US410470002003005,0.0,0.91,80103.0,0.0,145.0,44.9478955,-123.024726,0.0,1.0,8008303005,80082.0,0.0,0.0,64260.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.8399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,163821.54,1633.44,1.0,,,83.0,80083.0,2.0,2.0,23.0,0.0,21.0,0.0,0.0,25.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.760821636623773,0.123,999999.0,11.122,0.062,4.2,8.813,12758.384,145.0,0.0,0.0,0.0 -9835.0,9835,,Block 3008,0,25,PedestrianZones,2300765.3339338186,145384.5635841652,10.0,0,0,0.0,0.0,0.0,0.0,,14446.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3008.0,410470002003008.0,1000000US410470002003008,0.0,0.68,80103.0,0.0,145.0,44.9469861,-123.0251881,0.0,1.0,8008303008,80082.0,0.0,0.0,64261.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4,0.8499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155461.26,1588.4,1.0,,,83.0,80083.0,2.0,8.0,25.0,0.0,17.0,0.0,0.0,20.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.568896318246168,0.039,999999.0,24.448,0.03,4.052,8.298,20957.206,145.0,0.0,0.0,0.0 -9836.0,9836,,Block 2017,0,25,PedestrianZones,2301025.739575696,145727.14348666763,10.0,0,0,0.0,0.0,0.0,0.0,,9566.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,34,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2017.0,410470003002017.0,1000000US410470003002017,0.0,0.25,80103.0,0.0,161.0,44.9501408,-123.0220253,0.0,3.0,8009502017,80082.0,0.0,0.0,64262.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.26,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,102945.88,1289.3,1.0,,,95.0,80095.0,1.0,24.0,32.0,0.0,8.0,0.0,0.0,19.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.363310132869417,0.081,999999.0,4.522,0.172,4.253,9.482,8962.609,161.0,0.0,0.0,0.0 -9837.0,9837,,Block 2010,0,25,PedestrianZones,2301097.6994005577,145917.4117338233,10.0,0,0,0.0,0.0,0.0,0.0,,10777.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2010.0,410470003002010.0,1000000US410470003002010,0.0,0.54,80103.0,0.0,162.0,44.9518724,-123.021189,0.0,2.0,8009502010,80082.0,0.0,0.0,64263.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115977.41,1353.74,1.0,,,95.0,80095.0,1.0,11.0,24.0,0.0,13.0,0.0,0.0,21.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.662472690411515,0.065,999999.0,5.698,0.188,3.837,8.561,9125.952,162.0,0.0,0.0,0.0 -9838.0,9838,,Block 2018,0,25,PedestrianZones,2301113.973745465,145667.0950591038,10.0,0,0,0.0,0.0,0.0,0.0,,17131.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2018.0,410470003002018.0,1000000US410470003002018,0.0,1.0,80103.0,0.0,157.0,44.9496254,-123.0208839,0.0,1.0,8009502018,80082.0,0.0,0.0,64264.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,184358.45,1750.84,1.0,,,95.0,80095.0,1.0,0.0,31.0,0.0,31.0,0.0,0.0,76.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.232283890660931,0.138,999999.0,5.378,0.224,4.046,8.847,9103.96,157.0,0.0,0.0,0.0 -9839.0,9839,,Block 3001,0,25,PedestrianZones,2300998.674034132,145556.79379224457,10.0,0,0,0.0,0.0,0.0,0.0,,14972.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3001.0,410470002003001.0,1000000US410470002003001,0.0,0.64,80103.0,0.0,151.0,44.9486009,-123.0223007,0.0,1.0,8008303001,80082.0,0.0,0.0,64265.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,161123.17,1677.3,1.0,,,83.0,80083.0,2.0,9.0,25.0,0.0,16.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.698875678012378,0.062,999999.0,9.16,0.227,4.035,8.811,11501.739,151.0,0.0,0.0,0.0 -9840.0,9840,,Block 3006,0,25,PedestrianZones,2300906.625386568,145471.71866558652,10.0,0,0,0.0,0.0,0.0,0.0,,7178.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3006.0,410470002003006.0,1000000US410470002003006,0.0,1.0,80103.0,0.0,145.0,44.9478098,-123.023433,0.0,1.0,8008303006,80082.0,0.0,0.0,64266.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,77248.55999999998,1177.62,1.0,,,83.0,80083.0,2.0,0.0,27.0,0.0,27.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.7733813530112932,0.066,999999.0,20.74,0.216,4.152,8.915,18979.641,145.0,0.0,0.0,0.0 -9841.0,9841,,Block 2007,0,25,PedestrianZones,2301058.537795403,145398.7784649932,10.0,0,0,0.0,0.0,0.0,0.0,,19430.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2007.0,410470006002007.0,1000000US410470006002007,0.0,1.0,80103.0,0.0,145.0,44.9471964,-123.02148,0.0,1.0,8010202007,80082.0,0.0,0.0,64267.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209101.02,2813.93,1.0,,,102.0,80102.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,64.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.80029460787767,0.238,999999.0,3.004,0.145,4.191,8.922,7632.314,145.0,0.0,0.0,0.0 -9842.0,9842,,Block 3000,0,25,PedestrianZones,2300982.726402336,145411.54357112478,10.0,0,0,0.0,0.0,0.0,0.0,,29793.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3000.0,410470002003000.0,1000000US410470002003000,0.0,0.97,80103.0,0.0,139.0,44.9472899,-123.0224453,0.0,1.0,8008303000,80082.0,0.0,0.0,64268.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,320629.83,3310.42,1.0,,,83.0,80083.0,2.0,1.0,35.0,0.0,34.0,0.0,0.0,45.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.360641606845618,0.203,999999.0,3.455,0.103,4.204,8.081,7382.584,139.0,0.0,0.0,0.0 -9843.0,9843,,Block 3013,0,25,PedestrianZones,2300791.4780012816,145127.5653740682,10.0,0,0,0.0,0.0,0.0,0.0,,5852.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3013.0,410470002003013.0,1000000US410470002003013,0.0,1.0,80103.0,0.0,144.0,44.9446818,-123.0247552,0.0,1.0,8008203013,80082.0,0.0,0.0,64269.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,1.0,62977.76,1036.52,1.0,,,82.0,80082.0,2.0,0.0,3.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.445769138799476,0.15,999999.0,19.986,0.023,4.242,8.319,18115.184,144.0,0.2092862165483501,3.44568298266381,0.9225023223675172 -9844.0,9844,,Block 2015,0,25,PedestrianZones,2301108.3258659174,145313.28361351095,10.0,0,0,0.0,0.0,0.0,0.0,,24424.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2015.0,410470006002015.0,1000000US410470006002015,0.0,1.0,80103.0,0.0,142.0,44.9464413,-123.0208156,0.0,1.0,8010202015,80082.0,0.0,0.0,64270.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,262845.78,2195.45,1.0,,,102.0,80102.0,1.0,0.0,46.0,0.0,46.0,0.0,0.0,111.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.034103557255541,0.105,999999.0,9.881,0.026,4.034,8.222,11585.884,142.0,0.0,0.0,0.0 -9845.0,9845,,Block 3021,0,25,PedestrianZones,2300664.390422605,144733.06520940113,10.0,0,0,0.0,0.0,0.0,0.0,,18888.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3021.0,410470002003021.0,1000000US410470002003021,0.0,0.0,80103.0,0.0,123.0,44.9410975,-123.0262086,0.0,3.0,8008103021,80068.0,0.0,0.0,64271.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,308.0,0.0,0.0,0.0,1.0,203273.57,1825.39,1.0,,,81.0,80081.0,2.0,29.0,29.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.66651504054465,0.118,999999.0,45.587,0.517,3.255,6.026,33032.105,123.0,0.2059920092871546,3.3758845726162225,0.9052439088975958 -9846.0,9846,,Block 3028,0,25,PedestrianZones,2300454.580413278,144539.83707328723,10.0,0,0,0.0,0.0,0.0,0.0,,12556.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,1,0,0,0,529,0,0,3,0,0,0,0,0,0,673,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3028.0,410470002003028.0,1000000US410470002003028,0.0,0.0,80103.0,0.0,128.0,44.9393004,-123.0287892,0.0,3.0,8008003028,80068.0,0.0,0.0,64272.0,0.0,2.53,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,135122.98,1484.06,1.0,,,80.0,80080.0,2.0,781.0,781.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.101994134716673,0.0,999999.0,69.645,0.734,2.178,4.003,47134.976,128.0,0.206369216364873,3.390431616613736,0.9080417708763852 -9847.0,9847,,Block 6008,0,25,PedestrianZones,2300751.3515232727,144562.26768282053,10.0,0,0,0.0,0.0,0.0,0.0,,16938.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,8,5,0,0,0,0,100,0,0,0,0,0,0,83,0,4,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6008.0,410470009006008.0,1000000US410470009006008,0.0,0.33,80103.0,0.0,134.0,44.9395857,-123.0250396,0.0,3.0,8010606008,80068.0,0.0,0.0,64273.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.01,0.5,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,182286.49,1709.6,1.0,,,106.0,80106.0,1.0,116.0,173.0,0.0,57.0,0.0,0.0,115.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.184718396821943,0.132,999999.0,30.933,0.558,3.787,7.158,24378.545,134.0,0.2050839915516733,3.358799266502261,0.9010969137103576 -9848.0,9848,,Block 3027,0,25,PedestrianZones,2300797.287086993,144679.5371434684,10.0,0,0,0.0,0.0,0.0,0.0,,15149.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,59,64,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3027.0,410470006003027.0,1000000US410470006003027,0.0,0.0,80103.0,0.0,130.0,44.9406534,-123.0245043,0.0,3.0,8010403027,80082.0,0.0,0.0,64274.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,0.0,0.0,0.0,1.0,163022.57,1607.81,1.0,,,104.0,80104.0,1.0,124.0,124.0,0.0,0.0,0.0,0.0,0.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.742480038811153,0.041,999999.0,42.994,0.539,3.47,6.539,31700.967,130.0,0.2051041867464957,3.358182245519143,0.9009942909653356 -9849.0,9849,,Block 3026,0,25,PedestrianZones,2300910.8804445574,144634.16970669257,10.0,0,0,0.0,0.0,0.0,0.0,,14016.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3026.0,410470006003026.0,1000000US410470006003026,0.0,1.0,80103.0,0.0,137.0,44.9402773,-123.0230477,0.0,1.0,8010403026,80082.0,0.0,0.0,64275.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,150838.02,1558.03,1.0,,,104.0,80104.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,23.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4627613748907464,0.015,999999.0,38.363,0.47,3.597,6.823,28918.86,137.0,0.0,0.0,0.0 -9885.0,9885,,Block 1001,0,25,PedestrianZones,2302348.5988903427,145910.41192689285,10.0,0,0,0.0,0.0,0.0,0.0,,26916.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1001.0,410470006001001.0,1000000US410470006001001,0.0,0.97,80103.0,0.0,97.0,44.9521596,-123.0053407,0.0,1.0,8009901001,80377.0,0.0,0.0,64356.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,289668.65,2631.91,1.0,,,99.0,80099.0,1.0,1.0,33.0,0.0,32.0,0.0,0.0,75.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.649871348383821,0.194,999999.0,2.5,0.236,3.834,10.207,8132.969,97.0,0.0,0.0,0.0 -9902.0,9902,,Block 2018,0,25,PedestrianZones,2299418.9120237688,144776.4138376666,10.0,0,0,0.0,0.0,0.0,0.0,,3456.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2018.0,410470002002018.0,1000000US410470002002018,0.0,0.0,80103.0,0.0,101.0,44.941136,-123.0419996,0.0,3.0,8006102018,80068.0,0.0,0.0,64392.0,0.0,0.0,0.0,0.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,37192.47,1559.74,1.0,,,61.0,80061.0,2.0,10.0,10.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8538208233408561,0.194,999999.0,31.646,2.734,1.562,2.53,21872.567,101.0,0.0,0.0,0.0 -9903.0,9903,,Block 1012,0,25,PedestrianZones,2300032.2463189,145899.18061094987,10.0,0,0,0.0,0.0,0.0,0.0,,9574.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,18,0,0,31,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1012.0,410470002001012.0,1000000US410470002001012,0.0,0.08,80103.0,0.0,127.0,44.9514085,-123.0346781,0.0,3.0,8008501012,80068.0,0.0,0.0,64393.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,103033.08,1285.04,1.0,,,85.0,80085.0,2.0,33.0,36.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.365311941530764,0.185,999999.0,9.635,0.551,2.41,5.15,9462.901,127.0,0.0,0.0,0.0 -9904.0,9904,,Block 2051,0,25,PedestrianZones,2299877.7735486105,144624.1583715212,10.0,0,0,0.0,0.0,0.0,0.0,,17278.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,177,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2051.0,410470002002051.0,1000000US410470002002051,0.0,0.0,80103.0,0.0,125.0,44.9398962,-123.0361277,0.0,3.0,8006702051,80068.0,0.0,0.0,64394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,79.0,0.0,0.0,0.0,1.0,185947.39,1726.11,1.0,,,67.0,80067.0,2.0,165.0,165.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.268760849842335,0.127,999999.0,36.193,2.441,1.829,2.876,25004.185,125.0,0.2043925242949254,3.44329231209108,0.9143080007601704 -9905.0,9905,,Block 3045,0,25,PedestrianZones,2299597.0010393225,144257.06611549892,10.0,0,0,0.04,0.0,0.0,0.0,,8512.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,31,0,0,9,0,2,19,0,0,0,0,0,0,0,0,52,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3045.0,410470002003045.0,1000000US410470002003045,10.14,0.03,80135.0,0.0,95.0,44.9365149,-123.0395373,0.0,3.0,8007303045,80068.0,0.0,0.0,64395.0,0.0,0.04,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,28.0,1.0,0.0,0.0,0.0,2.23,253.0,0.0,0.0,0.0,1.0,91599.99,1344.58,1.0,,,73.0,80073.0,2.0,84.0,87.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1028444782417046,0.179,999999.0,33.063,1.897,2.633,4.237,23871.92,95.0,0.2029403413876628,3.4362494968119446,0.9114250526411808 -9906.0,9906,,Block 1033,0,25,PedestrianZones,2300461.973008156,145365.59662409776,10.0,0,0,0.0,0.0,0.0,0.0,,19822.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1033.0,410470002001033.0,1000000US410470002001033,0.0,0.4099999999999999,80103.0,0.0,155.0,44.9467301,-123.029023,0.0,3.0,8008401033,80068.0,0.0,0.0,64403.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.37,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,213318.53,1795.83,1.0,,,84.0,80084.0,2.0,24.0,41.0,0.0,17.0,0.0,0.0,46.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.897115315892982,0.061,999999.0,26.516,0.206,4.015,8.002,22091.481,155.0,0.0,0.0,0.0 -9907.0,9907,,Block 3019,0,25,PedestrianZones,2300404.960171979,144840.4348890484,10.0,0,0,0.0,0.0,0.0,0.0,,18661.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3019.0,410470002003019.0,1000000US410470002003019,0.0,0.0,80103.0,0.0,130.0,44.9419903,-123.0295368,0.0,1.0,8008103019,80068.0,0.0,0.0,64404.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,381.0,0.0,0.0,0.0,1.0,200830.65,1794.61,1.0,,,81.0,80081.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.610433170724013,0.125,999999.0,74.868,0.779,2.903,5.17,51224.096,130.0,0.2066298156455775,3.4069539073252586,0.911129952549631 -9908.0,9908,,Block 2014,0,25,PedestrianZones,2300823.1140675326,145913.92066260052,10.0,0,0,0.0,0.0,0.0,0.0,,13555.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2014.0,410470003002014.0,1000000US410470003002014,0.0,1.0,80103.0,0.0,168.0,44.9517639,-123.0246659,0.0,1.0,8009402014,80082.0,0.0,0.0,64405.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,145874.1,1550.69,1.0,,,94.0,80094.0,1.0,0.0,17.0,0.0,17.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3488055574969398,0.106,999999.0,5.256,0.173,4.455,9.308,9321.358,168.0,0.0,0.0,0.0 -9909.0,9909,,Block 2012,0,25,PedestrianZones,2301063.286159405,145821.13132150995,10.0,0,0,0.0,0.0,0.0,0.0,,9871.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2012.0,410470003002012.0,1000000US410470003002012,0.0,0.23,80103.0,0.0,162.0,44.9509967,-123.0215869,0.0,3.0,8009502012,80082.0,0.0,0.0,64406.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.13,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106235.0,1310.53,1.0,,,95.0,80095.0,1.0,17.0,22.0,0.0,5.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.438817800501862,0.121,999999.0,5.218,0.19,3.912,8.722,8921.388,162.0,0.0,0.0,0.0 -9910.0,9910,,Block 3014,0,25,PedestrianZones,2300749.381619774,144951.27809499617,10.0,0,0,0.0,0.0,0.0,0.0,,11205.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,29,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3014.0,410470002003014.0,1000000US410470002003014,0.0,0.0,80103.0,0.0,139.0,44.9430843,-123.0252186,0.0,3.0,8008203014,80082.0,0.0,0.0,64407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,120584.9,1989.78,1.0,,,82.0,80082.0,2.0,14.0,14.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7682458915029,0.121,999999.0,42.725,0.5,4.19,7.174,31935.224,139.0,0.2060781882103932,3.3836041816910334,0.9068271217469362 -9911.0,9911,,Block 3028,0,25,PedestrianZones,2301110.715793499,144658.7522515066,10.0,0,0,0.0,0.0,0.0,0.0,,25043.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3028.0,410470006003028.0,1000000US410470006003028,0.0,0.95,80103.0,0.0,150.0,44.9405545,-123.0205266,0.0,1.0,8010403028,80082.0,0.0,0.0,64408.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,269510.48,2957.33,1.0,,,104.0,80104.0,1.0,1.0,20.0,0.0,19.0,0.0,0.0,31.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.187103909104896,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,150.0,0.0,0.0,0.0 -9913.0,9913,,Block 2015,0,25,PedestrianZones,2299320.8970960407,144724.41784175573,10.0,0,0,23.77,0.0,0.0,0.0,,139832.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,5,0,0,0,0,0,0,0,58,0,0,0,0,0,0,123,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2015.0,410470002002015.0,1000000US410470002002015,0.0,0.0,80103.0,0.0,84.0,44.9406405,-123.0432202,0.0,3.0,8006102015,80068.0,0.0,0.0,64411.0,0.0,23.77,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,239.0,0.0,0.0,0.0,1.0,1504838.1,9590.84,1.0,,,61.0,80061.0,2.0,91.0,91.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,34.54629871009417,0.198,999999.0,30.076,1.304,2.264,3.68,21604.199,84.0,0.0,0.0,0.0 -10015.0,10015,,Block 2012,0,25,PedestrianZones,2301385.721749101,145211.3716179004,10.0,0,0,0.0,0.0,0.0,0.0,,27555.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2012.0,410470006002012.0,1000000US410470006002012,0.0,1.0,80103.0,0.0,138.0,44.9456025,-123.0172618,0.0,1.0,8010202012,80082.0,0.0,0.0,67469.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,296541.85,2312.0,1.0,,,102.0,80102.0,1.0,0.0,33.0,0.0,33.0,0.0,0.0,84.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.807658055366149,0.067,999999.0,1.717,0.148,4.607,10.006,7502.888,138.0,0.0,0.0,0.0 -10016.0,10016,,Block 2017,0,25,PedestrianZones,2301607.647282341,145189.35328817787,10.0,0,0,0.0,0.0,0.0,0.0,,11729.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2017.0,410470006002017.0,1000000US410470006002017,0.0,0.65,80103.0,0.0,143.0,44.9454666,-123.0144422,0.0,1.0,8010002017,80082.0,0.0,0.0,67470.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126224.22,1424.87,1.0,,,100.0,80100.0,1.0,7.0,20.0,0.0,13.0,0.0,0.0,34.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8977068201693434,0.063,999999.0,0.859,0.047,4.609,10.027,6967.026,143.0,0.0,0.0,0.0 -10017.0,10017,,Block 3018,0,25,PedestrianZones,2301436.633397004,144757.86793676787,10.0,0,0,0.0,0.0,0.0,0.0,,11511.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3018.0,410470006003018.0,1000000US410470006003018,0.0,0.89,80103.0,0.0,140.0,44.9415375,-123.016438,0.0,1.0,8010503018,80082.0,0.0,0.0,67471.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,123883.8,1395.21,1.0,,,105.0,80105.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,10.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8439783006459987,0.159,999999.0,3.224,0.122,5.006,9.988,8455.131,140.0,0.0,0.0,0.0 -10018.0,10018,,Block 6002,0,25,PedestrianZones,2301549.7516676425,144476.00921901927,10.0,0,0,0.0,0.0,0.0,0.0,,15049.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6002.0,410470009006002.0,1000000US410470009006002,0.0,1.0,80103.0,0.0,143.0,44.9390339,-123.0148942,0.0,1.0,8010806002,80082.0,0.0,0.0,67472.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,161951.42,1671.26,1.0,,,108.0,80108.0,1.0,0.0,24.0,0.0,24.0,0.0,0.0,35.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.7178896836830377,0.027,999999.0,3.847,0.125,4.89,10.051,8895.116,143.0,0.0,0.0,0.0 -10019.0,10019,,Block 1030,0,25,PedestrianZones,2301784.179160209,145636.72216683943,10.0,0,0,0.0,0.0,0.0,0.0,,19724.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,6,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1030.0,410470006001030.0,1000000US410470006001030,0.0,0.7399999999999999,80103.0,0.0,133.0,44.9495401,-123.0123825,0.0,1.0,8009901030,80082.0,0.0,0.0,67473.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,212263.48,1953.76,1.0,,,99.0,80099.0,1.0,7.0,27.0,0.0,20.0,0.0,0.0,46.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.872894607379387,0.049,999999.0,2.278,0.261,4.208,9.508,7543.324,133.0,0.0,0.0,0.0 -10020.0,10020,,Block 1022,0,25,PedestrianZones,2302048.162352727,145723.63940365007,10.0,0,0,0.0,0.0,0.0,0.0,,18724.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1022.0,410470006001022.0,1000000US410470006001022,0.0,1.0,80103.0,0.0,108.0,44.9503957,-123.0090729,0.0,1.0,8009901022,80082.0,0.0,0.0,67474.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,201504.73,1844.28,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.625907930258914,0.198,999999.0,1.868,0.123,3.732,8.799,6826.729,108.0,0.0,0.0,0.0 -10159.0,10159,,Block 1000,0,25,PedestrianZones,2302310.0919595864,146017.9310784608,10.0,0,0,0.0,0.0,0.0,0.0,,165279.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1000.0,410470006001000.0,1000000US410470006001000,0.0,0.95,80103.0,0.0,77.0,44.953116,-123.0058707,0.0,1.0,8009901000,80377.0,0.0,0.0,79535.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1778698.41,9461.51,1.0,,,99.0,80099.0,1.0,7.0,130.0,0.0,123.0,0.0,0.0,292.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,40.833260637069934,0.314,999999.0,2.616,0.264,3.508,8.201,6922.824,77.0,0.0,0.0,0.0 -10181.0,10181,,Block 3055,0,25,PedestrianZones,2300246.751824677,144041.35878623213,10.0,0,0,0.0,0.0,0.0,0.0,,100578.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,2112.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3055.0,410470002003055.0,1000000US410470002003055,0.0,1.0,80103.0,0.0,141.0,44.9347581,-123.0312234,0.0,1.0,8007803055,80068.0,0.0,0.0,79571.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,66.0,0.0,0.0,0.0,1.0,1082402.13,4353.15,1.0,,,78.0,80078.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.84851177014153,0.255,999999.0,46.587,0.0,0.604,0.9,30391.515,141.0,0.0,0.0,0.0 -10189.0,10189,,Block 3051,0,25,PedestrianZones,2299234.0126102427,144083.5244659951,10.0,0,0,0.0,0.0,0.0,0.0,,46551.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,40,0,34,0,0,0,25,0,5,118,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3051.0,410470002003051.0,1000000US410470002003051,0.0,0.4299999999999999,80135.0,0.0,72.0,44.9348512,-123.0440649,0.0,3.0,8007003051,80068.0,0.0,0.0,79586.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.82,0.62,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,1.0,500977.8,3508.8,1.0,,,70.0,80070.0,2.0,103.0,181.0,0.0,78.0,0.0,0.0,126.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.500857694522283,0.123,999999.0,20.579,0.707,3.396,6.414,17275.678,72.0,0.0,0.0,0.0 -10195.0,10195,,Block 2003,0,25,PedestrianZones,2301735.669602484,145497.15090289005,10.0,0,0,0.0,0.0,0.0,0.0,,12332.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2003.0,410470006002003.0,1000000US410470006002003,0.0,0.4799999999999999,80103.0,0.0,139.0,44.948271,-123.012942,0.0,3.0,8010002003,80082.0,0.0,0.0,79596.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132719.14,1483.67,1.0,,,100.0,80100.0,1.0,11.0,21.0,0.0,10.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.046809504411393,0.0,999999.0,1.83,0.207,4.171,9.335,7145.685,139.0,0.0,0.0,0.0 -10196.0,10196,,Block 2018,0,25,PedestrianZones,2301670.046685338,145344.83252474348,10.0,0,0,0.0,0.0,0.0,0.0,,23590.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,5,0,0,44,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2018.0,410470006002018.0,1000000US410470006002018,0.0,0.7399999999999999,80103.0,0.0,141.0,44.9468826,-123.0137132,0.0,1.0,8010002018,80082.0,0.0,0.0,79597.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.14,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,253865.65,2160.93,1.0,,,100.0,80100.0,1.0,8.0,31.0,0.0,23.0,0.0,0.0,56.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.827948144174288,0.117,999999.0,1.868,0.23,4.198,9.469,7255.664,141.0,0.0,0.0,0.0 -10197.0,10197,,Block 1011,0,25,PedestrianZones,2301707.355379769,145993.18860056452,10.0,0,0,0.0,0.0,0.0,0.0,,7875.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1011.0,410470006001011.0,1000000US410470006001011,0.0,1.0,80103.0,0.0,115.0,44.9527249,-123.0134962,0.0,1.0,8009801011,80082.0,0.0,0.0,79598.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,84747.00999999998,1164.82,1.0,,,98.0,80098.0,1.0,0.0,9.0,0.0,9.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.9455218711076427,0.111,999999.0,4.842,0.225,2.862,6.464,7236.212,115.0,0.0,0.0,0.0 -10198.0,10198,,Block 2001,0,25,PedestrianZones,2301960.602781003,145355.6790171656,10.0,0,0,7.06,0.0,0.0,0.0,,95887.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,19,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0.0,285.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2001.0,410470006002001.0,1000000US410470006002001,8.359999999999998,0.39,80103.0,0.0,138.0,44.9470614,-123.0100372,0.0,3.0,8010002001,80082.0,0.0,0.0,79599.0,0.0,7.06,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.62,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1031917.48,4476.61,1.0,,,100.0,80100.0,1.0,93.0,152.0,0.0,59.0,0.0,0.0,150.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,23.68954479455233,0.172,999999.0,2.455,0.166,3.577,8.232,6839.459,138.0,0.0,0.0,0.0 -10199.0,10199,,Block 3023,0,25,PedestrianZones,2301588.856655794,144660.7800407005,10.0,0,0,0.0,0.0,0.0,0.0,,15262.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3023.0,410470006003023.0,1000000US410470006003023,0.0,0.92,80103.0,0.0,129.0,44.9407068,-123.0144718,0.0,1.0,8010503023,80082.0,0.0,0.0,79600.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,164245.85,1999.67,1.0,,,105.0,80105.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.770562607217328,0.242,999999.0,1.928,0.096,4.422,8.525,6690.194,129.0,0.0,0.0,0.0 -10200.0,10200,,Block 5003,0,25,PedestrianZones,2301738.5017807083,144437.00468799434,10.0,0,0,0.0,0.0,0.0,0.0,,18321.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,32,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5003.0,410470009005003.0,1000000US410470009005003,0.0,0.2999999999999999,80103.0,0.0,129.0,44.9387359,-123.0124884,0.0,3.0,8010905003,80082.0,0.0,0.0,79601.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.87,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,197166.07,1982.76,1.0,,,109.0,80109.0,1.0,59.0,84.0,0.0,25.0,0.0,0.0,68.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.526306164566362,0.162,999999.0,9.909,0.082,2.786,6.363,10413.934,129.0,0.0,0.0,0.0 -10201.0,10201,,Block 5004,0,25,PedestrianZones,2301706.359662099,144221.97476646333,10.0,0,0,0.0,0.0,0.0,0.0,,36856.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5004.0,410470009005004.0,1000000US410470009005004,0.0,1.0,80103.0,0.0,131.0,44.9367927,-123.0128107,0.0,1.0,8010905004,80082.0,0.0,0.0,79602.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,396633.47,2539.74,1.0,,,109.0,80109.0,1.0,0.0,50.0,0.0,50.0,0.0,0.0,138.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.10544352154102,0.279,999999.0,12.135,0.114,3.504,8.189,13007.601,131.0,0.0,0.0,0.0 -10204.0,10204,,Block 5006,0,25,PedestrianZones,2301874.561073065,144154.93485160972,10.0,0,0,0.0,0.0,0.0,0.0,,16806.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5006.0,410470009005006.0,1000000US410470009005006,0.0,1.0,80103.0,0.0,116.0,44.9362367,-123.0106542,0.0,1.0,8010905006,80082.0,0.0,0.0,79605.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,180857.78,1932.16,1.0,,,109.0,80109.0,1.0,0.0,24.0,0.0,24.0,0.0,0.0,62.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.151919560833497,0.279,999999.0,9.967,0.073,3.586,8.505,11821.843,116.0,0.0,0.0,0.0 -10208.0,10208,,Block 2013,0,25,PedestrianZones,2301285.484735138,145248.87358490995,10.0,0,0,0.0,0.0,0.0,0.0,,22030.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2013.0,410470006002013.0,1000000US410470006002013,0.0,0.97,80103.0,0.0,142.0,44.9459117,-123.0185462,0.0,1.0,8010202013,80082.0,0.0,0.0,79615.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,237084.45,2132.71,1.0,,,102.0,80102.0,1.0,1.0,29.0,0.0,28.0,0.0,0.0,70.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.442705261433071,0.058,999999.0,2.278,0.123,4.678,9.663,7641.921,142.0,0.0,0.0,0.0 -10209.0,10209,,Block 3007,0,25,PedestrianZones,2301324.9297541934,145052.78756374383,10.0,0,0,0.0,0.0,0.0,0.0,,12993.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3007.0,410470006003007.0,1000000US410470006003007,0.0,1.0,80103.0,0.0,141.0,44.944159,-123.0179692,0.0,1.0,8010403007,80082.0,0.0,0.0,79616.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139826.52,1498.01,1.0,,,104.0,80104.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,18.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2099723558141,0.069,999999.0,1.824,0.113,4.692,9.768,7419.235,141.0,0.0,0.0,0.0 -10218.0,10218,,Block 6025,0,25,PedestrianZones,2300977.9915057514,144190.18568000375,10.0,0,0,0.0,0.0,0.0,0.0,,44190.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,1,0,0,0,0,32,0,15,1,0,0,11,0,0,54,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6025.0,410470009006025.0,1000000US410470009006025,0.0,0.27,80103.0,0.0,160.0,44.9363026,-123.0220222,0.0,3.0,8010606025,80068.0,0.0,0.0,79635.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.38,0.51,0.0,0.0,0.0,0.0,74.0,0.0,0.0,0.0,1.0,475563.25,3085.26,1.0,,,106.0,80106.0,1.0,94.0,129.0,0.0,35.0,0.0,0.0,68.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.917420222743775,0.075,999999.0,12.588,0.126,4.342,7.942,13139.285,160.0,0.0,0.0,0.0 -10224.0,10224,,Block 1030,0,25,PedestrianZones,2300334.998723644,145551.45824836157,10.0,0,0,0.0,0.0,0.0,0.0,,10809.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1030.0,410470002001030.0,1000000US410470002001030,0.0,1.0,80103.0,0.0,151.0,44.9483661,-123.0307051,0.0,1.0,8008401030,80068.0,0.0,0.0,79649.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116321.93,1336.26,1.0,,,84.0,80084.0,2.0,0.0,17.0,0.0,17.0,0.0,0.0,49.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6703816850631887,0.129,999999.0,17.037,0.288,3.941,7.667,15810.265,151.0,0.0,0.0,0.0 -10270.0,10270,,Block 2006,0,25,PedestrianZones,2301259.438481952,145544.27431490333,10.0,0,0,0.0,0.0,0.0,0.0,,13633.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2006.0,410470006002006.0,1000000US410470006002006,0.0,0.9,80103.0,0.0,147.0,44.9485615,-123.0189928,0.0,1.0,8010202006,80082.0,0.0,0.0,106763.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146711.04,1727.7,1.0,,,102.0,80102.0,1.0,2.0,21.0,0.0,19.0,0.0,0.0,50.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3680190103347125,0.123,999999.0,2.958,0.157,4.298,9.34,7870.653,147.0,0.0,0.0,0.0 -10271.0,10271,,Block 1025,0,25,PedestrianZones,2301415.0303839403,145843.35583338092,10.0,0,0,0.0,0.0,0.0,0.0,,15084.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1025.0,410470006001025.0,1000000US410470006001025,0.0,1.0,80103.0,0.0,149.0,44.9512953,-123.01714,0.0,1.0,8009801025,80082.0,0.0,0.0,106764.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,162335.16,1734.17,1.0,,,98.0,80098.0,1.0,0.0,21.0,0.0,21.0,0.0,0.0,49.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.726699099049714,0.226,999999.0,3.71,0.209,4.441,10.322,8980.137,149.0,0.0,0.0,0.0 -10272.0,10272,,Block 1027,0,25,PedestrianZones,2301705.1054876265,145732.23222476608,10.0,0,0,0.0,0.0,0.0,0.0,,8431.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1027.0,410470006001027.0,1000000US410470006001027,0.0,1.0,80103.0,0.0,132.0,44.950377,-123.0134218,0.0,1.0,8009801027,80082.0,0.0,0.0,106765.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,90727.97,1236.78,1.0,,,98.0,80098.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0828257349085084,0.163,999999.0,2.869,0.183,3.778,8.71,7410.949,132.0,0.0,0.0,0.0 -10281.0,10281,,Block 3063,0,25,PedestrianZones,2300253.215604589,143592.24840685894,10.0,0,0,0.0,0.0,0.0,0.0,,11127.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3063.0,410470002003063.0,1000000US410470002003063,0.0,1.0,80135.0,0.0,137.0,44.9307202,-123.0309633,0.0,1.0,8007703063,80068.0,0.0,0.0,106791.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,1.0,119752.18,1400.57,1.0,,,77.0,80077.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.749129303197461,0.0,999999.0,38.131,0.097,0.942,2.181,25799.761,137.0,0.0,0.0,0.0 -10283.0,10283,,Block 6015,0,25,PedestrianZones,2300768.0602953844,144274.35875224244,10.0,0,0,0.0,0.0,0.0,0.0,,15118.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,12,0,0,0.0,42.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6015.0,410470009006015.0,1000000US410470009006015,0.0,0.0,80103.0,0.0,148.0,44.9370007,-123.024714,0.0,3.0,8010606015,80068.0,0.0,0.0,106793.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,1.0,162699.0,1618.26,1.0,,,106.0,80106.0,1.0,11.0,11.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.7350517227203,0.041,999999.0,22.334,0.487,3.975,7.487,19085.374,148.0,0.2039385167042653,3.342325595225792,0.8965353449534488 -10284.0,10284,,Block 3014,0,25,PedestrianZones,2301191.2186992173,144670.55545912057,10.0,0,0,0.0,0.0,0.0,0.0,,52001.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3014.0,410470006003014.0,1000000US410470006003014,0.0,0.75,80103.0,0.0,153.0,44.9419378,-123.0189818,0.0,1.0,8010403014,80082.0,0.0,0.0,106794.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,559622.62,4585.05,1.0,,,104.0,80104.0,1.0,38.0,155.0,0.0,117.0,0.0,0.0,245.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.8471562621196,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,153.0,0.0,0.0,0.0 -10291.0,10291,,Block 2028,0,25,PedestrianZones,2300266.146992308,145227.07756438412,10.0,0,0,0.0,0.0,0.0,0.0,,29839.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,117,98,0,2,0,0,0,6,0,0,266,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2028.0,410470002002028.0,1000000US410470002002028,0.0,0.28,80103.0,0.0,149.0,44.945429,-123.0314484,0.0,3.0,8006902028,80068.0,0.0,0.0,106801.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.54,0.5999999999999999,0.0,0.8,6.0,0.0,137.0,0.0,0.0,0.0,1.0,321121.77,2372.55,1.0,,,69.0,80069.0,2.0,156.0,217.0,0.0,61.0,0.0,0.0,101.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.371935004846227,0.0,999999.0,29.431,0.863,3.369,6.97,23296.991,149.0,0.2051147219879344,3.4235174349937214,0.911679296834066 -10292.0,10292,,Block 4042,0,25,PedestrianZones,2300580.5659630005,145902.9117251957,10.0,0,0,0.0,0.0,0.0,0.0,,10363.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4042.0,410470003004042.0,1000000US410470003004042,0.0,0.7299999999999999,80103.0,0.0,160.0,44.9515966,-123.0277339,0.0,1.0,8009004042,80082.0,0.0,0.0,106802.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111527.4,1336.47,1.0,,,90.0,80090.0,1.0,4.0,15.0,0.0,11.0,0.0,0.0,26.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.560314653681533,0.147,999999.0,6.148,0.211,4.205,8.847,9596.985,160.0,0.0,0.0,0.0 -10293.0,10293,,Block 1032,0,25,PedestrianZones,2300528.525229384,145476.2576198238,10.0,0,0,0.0,0.0,0.0,0.0,,9930.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1032.0,410470002001032.0,1000000US410470002001032,0.0,1.0,80103.0,0.0,148.0,44.9477442,-123.028224,0.0,1.0,8008401032,80082.0,0.0,0.0,106803.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106859.35,1320.23,1.0,,,84.0,80084.0,2.0,0.0,22.0,0.0,22.0,0.0,0.0,57.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4531509367588087,0.065,999999.0,25.756,0.249,4.419,8.918,22191.584,148.0,0.0,0.0,0.0 -10294.0,10294,,Block 2055,0,25,PedestrianZones,2300227.641465096,144769.87118406556,10.0,0,0,0.0,0.0,0.0,0.0,,17341.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0.0,143.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2055.0,410470002002055.0,1000000US410470002002055,0.0,0.0,80103.0,0.0,134.0,44.9413056,-123.0317546,0.0,3.0,8006802055,80068.0,0.0,0.0,106804.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,1.0,186622.61,1728.31,1.0,,,68.0,80068.0,2.0,37.0,37.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.284261876557244,0.127,999999.0,57.791,2.227,2.146,3.545,39254.947,134.0,0.2062344275207265,3.4232740519371494,0.9132094783059131 -10295.0,10295,,Block 3011,0,25,PedestrianZones,2300677.4818502776,145160.393532645,10.0,0,0,0.0,0.0,0.0,0.0,,51628.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,1185,0,0,0,0,0,0,0,0,0,986,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3011.0,410470002003011.0,1000000US410470002003011,0.0,0.0,80103.0,0.0,138.0,44.944945,-123.0262121,0.0,3.0,8008203011,80082.0,0.0,0.0,106805.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,117.0,0.0,0.0,0.0,1.0,555611.27,3360.45,1.0,,,82.0,80082.0,2.0,807.0,807.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.755068423111188,0.125,999999.0,34.769,0.019,3.899,7.836,27267.188,138.0,0.2061081299388144,3.395064341516932,0.9087240888845582 -10296.0,10296,,Block 4035,0,25,PedestrianZones,2300711.0863605845,145957.8216965923,10.0,0,0,0.0,0.0,0.0,0.0,,10108.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4035.0,410470003004035.0,1000000US410470003004035,0.0,1.0,80103.0,0.0,174.0,44.9521272,-123.0261024,0.0,1.0,8009004035,80082.0,0.0,0.0,106806.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108774.95,1320.09,1.0,,,90.0,80090.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,29.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.497127105699402,0.144,999999.0,3.831,0.16,4.739,10.038,8876.414,174.0,0.0,0.0,0.0 -10297.0,10297,,Block 3002,0,25,PedestrianZones,2300844.223513389,145581.8694501658,10.0,0,0,0.0,0.0,0.0,0.0,,14212.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,23,0,0,0,0,0,7,0,0,0,0,0,0,27,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3002.0,410470002003002.0,1000000US410470002003002,0.0,0.27,80103.0,0.0,151.0,44.948783,-123.024267,0.0,3.0,8008303002,80082.0,0.0,0.0,106807.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.44,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152945.84,1606.0,1.0,,,83.0,80083.0,2.0,44.0,60.0,0.0,16.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.51115035342168,0.047,999999.0,9.639,0.236,3.89,8.248,11447.702,151.0,0.0,0.0,0.0 -10298.0,10298,,Block 2019,0,25,PedestrianZones,2300991.615407364,145643.24961946477,10.0,0,0,0.0,0.0,0.0,0.0,,7584.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.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,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2019.0,410470003002019.0,1000000US410470003002019,0.0,0.89,80103.0,0.0,155.0,44.9493766,-123.0224243,0.0,1.0,8009502019,80082.0,0.0,0.0,106808.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.07,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,81617.21,1155.71,1.0,,,95.0,80095.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,15.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.8736716467147896,0.062,999999.0,9.16,0.227,4.035,8.811,11501.739,155.0,0.0,0.0,0.0 -10299.0,10299,,Block 3012,0,25,PedestrianZones,2300834.4860318545,145127.0110784268,10.0,0,0,0.0,0.0,0.0,0.0,,47877.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,93,0,0,0,0,5,0,0,0,0,0,0,63,0,0,0.0,691.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3012.0,410470002003012.0,1000000US410470002003012,0.0,0.28,80103.0,0.0,140.0,44.945383,-123.023425,0.0,3.0,8008203012,80082.0,0.0,0.0,106809.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.03,0.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,515245.73,4166.75,1.0,,,82.0,80082.0,2.0,71.0,98.0,0.0,27.0,0.0,0.0,35.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.82840399548617,0.15,999999.0,19.986,0.023,4.242,8.319,18115.184,140.0,0.0,0.0,0.0 -10300.0,10300,,Block 3015,0,25,PedestrianZones,2300709.0287123094,144855.82127787187,10.0,0,0,0.0,0.0,0.0,0.0,,21644.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,536,0,0,24,0,0,0,0,0,0,489,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3015.0,410470002003015.0,1000000US410470002003015,0.0,0.0,80103.0,0.0,129.0,44.9422143,-123.0256919,0.0,3.0,8008103015,80082.0,0.0,0.0,106810.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,167.0,0.0,0.0,0.0,1.0,232929.76,1892.97,1.0,,,81.0,80081.0,2.0,361.0,361.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.347326878391971,0.045,999999.0,48.544,0.511,3.814,6.704,35358.169,129.0,0.2057208184027386,3.373188125164073,0.9043898720686104 -10301.0,10301,,Block 3025,0,25,PedestrianZones,2300884.132709193,144765.47556221348,10.0,0,0,0.0,0.0,0.0,0.0,,24405.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,218,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3025.0,410470006003025.0,1000000US410470006003025,0.0,0.1799999999999999,80103.0,0.0,134.0,44.9414509,-123.0234384,0.0,3.0,8010403025,80082.0,0.0,0.0,106811.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.18,0.4899999999999999,0.0,0.0,6.0,0.0,123.0,0.0,0.0,0.0,1.0,262633.06,2474.44,1.0,,,104.0,80104.0,1.0,172.0,211.0,0.0,39.0,0.0,0.0,79.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.029220139328177,0.107,999999.0,37.482,0.551,3.922,7.385,28714.801,134.0,0.2050836322279432,3.358451450469251,0.9009809476797312 -10305.0,10305,,Block 3044,0,25,PedestrianZones,2299540.242944433,144152.48369154724,10.0,0,0,0.2999999999999999,0.0,0.0,0.0,,23426.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,30,5,0,0,0,9,0,105,0,0,0,0,0,0,212,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3044.0,410470002003044.0,1000000US410470002003044,10.14,0.02,80135.0,0.0,89.0,44.9355581,-123.0402145,0.0,3.0,8007303044,80068.0,0.0,0.0,106818.0,0.0,0.2999999999999999,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,55.33,1.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,252108.39,2052.7,1.0,,,73.0,80073.0,2.0,166.0,169.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.787607227027179,0.0,999999.0,31.875,2.018,2.68,4.316,23162.522,89.0,0.0,0.0,0.0 -10307.0,10307,,Block 2056,0,25,PedestrianZones,2299969.011169781,144485.8930660597,10.0,0,0,0.0,0.0,0.0,0.0,,8582.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,17,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2056.0,410470002002056.0,1000000US410470002002056,0.0,0.0,80103.0,0.0,132.0,44.9386783,-123.0349172,0.0,3.0,8006702056,80068.0,0.0,0.0,106820.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,0.0,0.0,0.0,1.0,92363.17,1299.45,1.0,,,67.0,80067.0,2.0,19.0,19.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1203648004829607,0.039,999999.0,31.231,0.0,0.346,0.402,20244.51,132.0,0.2045418605181125,3.429744508688346,0.9123114554081632 -10314.0,10314,,Block 3007,0,25,PedestrianZones,2300054.5908047925,146750.86784345188,10.0,0,0,0.0,0.0,0.0,0.0,,12401.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3007.0,410470003003007.0,1000000US410470003003007,0.0,1.0,80103.0,0.0,90.0,44.9590756,-123.0347336,0.0,1.0,8008603007,80417.0,0.0,0.0,106833.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133456.28,1474.74,1.0,,,86.0,80086.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.063731807628671,0.303,999999.0,4.855,0.107,1.854,3.322,5232.978,90.0,0.0,0.0,0.0 -10366.0,10366,,Block 2013,0,25,PedestrianZones,2299689.089354109,145261.79385776195,10.0,0,0,2.64,0.0,0.0,0.0,,18145.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2013.0,410470002002013.0,1000000US410470002002013,0.0,0.0,80103.0,0.0,113.0,44.9455783,-123.0387711,0.0,1.0,8006402013,80068.0,0.0,0.0,110860.0,0.0,2.64,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,1.0,195267.37,1770.9,1.0,,,64.0,80064.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.482718139315738,0.212,999999.0,14.957,2.372,1.275,2.099,10915.864,113.0,0.0,0.0,0.0 -10443.0,10443,,Block 1026,0,25,PedestrianZones,2301576.857454753,145779.5250173924,10.0,0,0,0.0,0.0,0.0,0.0,,14192.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1026.0,410470006001026.0,1000000US410470006001026,0.0,1.0,80103.0,0.0,132.0,44.9507665,-123.015065,0.0,1.0,8009801026,80082.0,0.0,0.0,111018.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152731.59,1654.35,1.0,,,98.0,80098.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,40.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.506231690302386,0.217,999999.0,4.527,0.196,3.58,8.137,8105.078,132.0,0.0,0.0,0.0 -10444.0,10444,,Block 1019,0,25,PedestrianZones,2301735.823458338,145824.00237901398,10.0,0,0,0.0,0.0,0.0,0.0,,4309.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1019.0,410470006001019.0,1000000US410470006001019,0.0,1.0,80103.0,0.0,116.0,44.9512111,-123.0130689,0.0,1.0,8009801019,80082.0,0.0,0.0,111019.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,46369.14,996.72,1.0,,,98.0,80098.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,10.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.064488091620064,0.113,999999.0,4.389,0.158,3.154,7.263,7457.526,116.0,0.0,0.0,0.0 -10445.0,10445,,Block 5002,0,25,PedestrianZones,2301866.575165297,144382.53506043975,10.0,0,0,0.0,0.0,0.0,0.0,,41443.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5002.0,410470009005002.0,1000000US410470009005002,0.0,0.95,80103.0,0.0,125.0,44.9382818,-123.010845,0.0,1.0,8010905002,80082.0,0.0,0.0,111020.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,446002.81,3190.26,1.0,,,109.0,80109.0,1.0,3.0,63.0,0.0,60.0,0.0,0.0,155.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.238806695707082,0.203,999999.0,10.206,0.085,2.738,6.316,10574.115,125.0,0.0,0.0,0.0 -10450.0,10450,,Block 2000,0,25,PedestrianZones,2302158.952377626,145245.8982900426,10.0,0,0,0.0,0.0,0.0,0.0,,130337.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2000.0,410470006002000.0,1000000US410470006002000,0.0,0.96,80103.0,0.0,133.0,44.9461294,-123.0074817,0.0,1.0,8010002000,80082.0,0.0,0.0,111025.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1402659.54,5559.43,1.0,,,100.0,80100.0,1.0,5.0,119.0,0.0,114.0,0.0,0.0,291.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,32.20060373172144,0.409,999999.0,2.55,0.232,2.8,7.302,6305.289,133.0,0.0,0.0,0.0 -10530.0,10530,,Block 3043,0,25,PedestrianZones,2299488.158744955,144011.45096954348,10.0,0,0,0.0,0.0,0.0,0.0,,15879.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3043.0,410470002003043.0,1000000US410470002003043,0.0,0.5799999999999998,80135.0,0.0,82.0,44.9342748,-123.0408178,0.0,2.0,8007403043,80068.0,0.0,0.0,111167.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.62,0.8499999999999999,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,1.0,170888.66,1656.91,1.0,,,74.0,80074.0,2.0,8.0,19.0,0.0,11.0,0.0,0.0,13.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.923060460419118,0.134,999999.0,26.814,1.218,2.55,4.151,19817.71,82.0,0.0,0.0,0.0 -10533.0,10533,,Block 3056,0,25,PedestrianZones,2300205.877512566,143929.9613753071,10.0,0,0,0.0,0.0,0.0,0.0,,3595.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3056.0,410470002003056.0,1000000US410470002003056,0.0,0.0,80135.0,0.0,131.0,44.9337446,-123.0316968,0.0,1.0,8007803056,80068.0,0.0,0.0,111170.0,0.0,0.0,0.0,0.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,38695.02,1915.54,1.0,,,78.0,80078.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8883145859539939,0.17,999999.0,36.647,0.0,0.813,1.608,24483.206,131.0,0.0,0.0,0.0 -10534.0,10534,,Block 3035,0,25,PedestrianZones,2300335.4143877705,144250.9619506812,10.0,0,0,0.0,0.0,0.0,0.0,,97571.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,2112.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,2,41,0,636,0,0,1,0,0,0,0,0,0,0,0,525,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3035.0,410470002003035.0,1000000US410470002003035,0.0,0.03,80103.0,0.0,146.0,44.9366684,-123.0301838,0.0,3.0,8007803035,80068.0,0.0,0.0,111171.0,0.0,0.0,0.0,0.0,,,,0,0.0,25.97,0.8399999999999999,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,1.0,1050040.28,4383.73,1.0,,,78.0,80078.0,2.0,831.0,858.0,0.0,27.0,0.0,0.0,32.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.105586565205883,0.0,999999.0,46.345,0.65,2.999,5.656,33280.261,146.0,0.2039024200990567,3.384155263173137,0.9034009792536912 -10541.0,10541,,Block 2007,0,25,PedestrianZones,2299476.2520926185,145409.62388958017,10.0,0,0,0.28,0.0,0.0,0.0,,0.0,29146.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2007.0,410470002002007.0,1000000US410470002002007,0.0,0.0,80103.0,0.0,109.0,44.9468478,-123.0415258,0.0,1.0,8006102007,80068.0,0.0,0.0,111190.0,0.0,0.28,0.0,3.0,LINEAR PARK / CONNECTOR TRAIL,DEVELOPED,,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,313659.33,2495.24,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.200621119277452,0.331,999999.0,10.994,1.954,0.357,0.541,7382.392,109.0,0.0,0.0,0.0 -10542.0,10542,,Block 2039,0,25,PedestrianZones,2299546.1846272014,144896.12515690635,10.0,0,0,0.0,0.0,0.0,0.0,,17292.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,6,0,11,0,0,0,2,0,10,36,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2039.0,410470002002039.0,1000000US410470002002039,0.0,0.5999999999999999,80103.0,0.0,106.0,44.9422488,-123.0404354,0.0,2.0,8006302039,80068.0,0.0,0.0,111191.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4099999999999999,0.6099999999999999,0.0,1.5,18.0,0.0,48.0,0.0,0.0,0.0,1.0,186088.65,1725.04,1.0,,,63.0,80063.0,2.0,27.0,67.0,0.0,40.0,0.0,0.0,66.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.272003711542358,0.265,999999.0,34.545,3.186,1.704,2.746,23866.219,106.0,0.2026085294822913,3.4578885298018154,0.9143188781943028 -10543.0,10543,,Block 2014,0,25,PedestrianZones,2299739.298217061,145357.50839922158,10.0,0,0,0.0,0.0,0.0,0.0,,10400.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,5,31,0,9,0,0,0,0,0,0,95,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2014.0,410470002002014.0,1000000US410470002002014,0.0,0.0,80103.0,0.0,116.0,44.9464534,-123.0381733,0.0,3.0,8006402014,80068.0,0.0,0.0,111192.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.0,0.0,0.0,0.0,1.0,111923.96,1442.39,1.0,,,64.0,80064.0,2.0,109.0,109.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.569418380303398,0.212,999999.0,14.957,2.372,1.275,2.099,10915.864,116.0,0.0,0.0,0.0 -10544.0,10544,,Block 1027,0,25,PedestrianZones,2300055.94183643,145416.26739122815,10.0,0,0,0.0,0.0,0.0,0.0,,19456.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,11,0,0,3,0,196,0,0,0,0,0,0,338,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1027.0,410470002001027.0,1000000US410470002001027,0.0,0.0,80103.0,0.0,135.0,44.9470714,-123.034186,0.0,3.0,8008501027,80068.0,0.0,0.0,111193.0,0.0,0.0,0.0,0.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,209383.72,2029.17,1.0,,,85.0,80085.0,2.0,224.0,224.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.80678449007633,0.0,999999.0,18.502,1.102,2.92,6.036,15703.917,135.0,0.0,0.0,0.0 -10545.0,10545,,Block 2043,0,25,PedestrianZones,2299925.91111,144745.57334289653,10.0,0,0,0.0,0.0,0.0,0.0,,17990.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,4,0,0,0,674,0,0,3,0,0,0,0,0,0,723,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2043.0,410470002002043.0,1000000US410470002002043,0.0,0.0,80103.0,0.0,123.0,44.9410019,-123.0355663,0.0,3.0,8006802043,80068.0,0.0,0.0,111194.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,40.0,0.0,0.0,0.0,1.0,193604.12,1760.7,1.0,,,68.0,80068.0,2.0,623.0,623.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.444535111441725,0.0,999999.0,46.087,2.61,2.667,4.33,32266.782,123.0,0.2046786345376693,3.4453585060754035,0.9149225544600889 +MAZ,NO,CODE,NAME,USEIMAGEFILE,CATNO,CATNAME,XCOORD,YCOORD,IMAGEHEIGHT,USEIMAGEHEIGHT,IMAGEANGLE,ACTIVE_ACRES,ADT2000,ADT2017,ADTMODEL,AFFGEOID,ALAND,AWATER,BLKGRP,BLOCK,BUILT_FORM,CITY,CITYNM,COLLEGEENROLL,COUNTY,COUNTYFP,CTNUM,DAYCAREFAC,DISTRICT06,DIST_9TO12,DIST_KTO8,EBIKEACCTIME,ECT_DIST,ELEM,EMP2000,EMPMODEL,EMPPER,EMP_ACC,EMP_AER,EMP_AFS,EMP_CON,EMP_EDU,EMP_FSD,EMP_GOV,EMP_HCS,EMP_HTMFG,EMP_IFRPBS,EMP_MFG,EMP_NHTMFG,EMP_NRM,EMP_OSV,EMP_RCS,EMP_RET,EMP_TOTAL,EMP_TWU,EMP_WT,ENROLLGRADE9to12,ENROLLGRADEKto8,ENROLL_912,ESCOOACCTIME,EXPPRK_DAY,EXPPRK_HR,EXPPRK_MNTH,EXTERNAL,EXT_GROWTH,EXT_NWRK_SIZE,EXT_WORK_SIZE,GA,GEOID,GEOID20,GEOIDFQ20,HHDEN,HHPER,HIGH,HIGH_DIST,INTHMI,INTPTLAT,INTPTLON,INT_GROWTH,MAXCONNECTORWEIGHT,MAZID,MIDDLE,MID_DIST,NEW_MZNUM,OBJECTID,OSPC_ACRES,PARKACRES,PARKAREA,PARKATTRACT,PARKCLASS,PARKDEVELOP,PNR_LOT_NAME,PNR_SPACES,POP2000,POPEMPDEN,POPHHDEN,POPMODEL,PRKCST_DAY,PRKCST_HR,PRKCST_MNTH,PRKSPACES,PUMA,RETDEN,RIVER,SCHDIST,SHAPE_AREA,SHAPE_LENG,SKATS,STATEFP,SUFFIX,TAZ,TAZABM,TERMINALTIME,TOTEMP23,TOTEMPHH,TOTGQHHS,TOTHHS,TOTNGQHHS,TOTNUMZONES,TOTPOP,TRACT,TRACTCE,TRACT_NUM,TYPENO,UGB,UGBID,WLKTIME_BRT,WLKTIME_BUS,WLKTIME_CR,WLKTIME_LRT,ACRES,walk_dist_local_bus,walk_dist_premium_transit,empden,retempden,duden,popden,popempdenpermi,totint,exp_hourly,exp_daily,exp_monthly,external_size_term +1,1,External,,0,25,PedestrianZones,2290467.377,141747.0272,10,0,0,0.0,0,0,0,,0,0,0,0.0,0,0,,0,0,,0,0,0,0,0,9999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,1,0,0,0,0,,,,0.0,0.0,0,0,0,,,0,0,8000100000,0,0,0,0,0.0,0.0,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,80001,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,8466 +2,2,External,,0,25,PedestrianZones,2289462.446,144009.1764,10,0,0,0.0,0,0,0,,0,0,0,0.0,0,0,,0,0,,0,0,0,0,0,9999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,1,0,0,0,0,,,,0.0,0.0,0,0,0,,,0,0,8000200000,0,0,0,0,0.0,0.0,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,80002,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,27578 +3,3,External,,0,25,PedestrianZones,2289194.337,148302.7583,10,0,0,0.0,0,0,0,,0,0,0,0.0,0,0,,0,0,,0,0,0,0,0,9999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,1,0,0,0,0,,,,0.0,0.0,0,0,0,,,0,0,8000300000,0,0,0,0,0.0,0.0,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,80003,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,630 +4,4,External,,0,25,PedestrianZones,2291271.582,154353.9102,10,0,0,0.0,0,0,0,,0,0,0,0.0,0,0,,0,0,,0,0,0,0,0,9999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,1,0,0,0,0,,,,0.0,0.0,0,0,0,,,0,0,8000400000,0,0,0,0,0.0,0.0,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,80004,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,1802 +5,5,External,,0,25,PedestrianZones,2296989.048,159609.1129,10,0,0,0.0,0,0,0,,0,0,0,0.0,0,0,,0,0,,0,0,0,0,0,9999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,1,0,0,0,0,,,,0.0,0.0,0,0,0,,,0,0,8000500000,0,0,0,0,0.0,0.0,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,80005,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,5620 +7109,7109,,Block 2019,0,25,PedestrianZones,2299385.715,144483.7281,10,0,0,0.0,0,0,0,,11870,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2019.0,410470000000000.0,1000000US410470002002019,0.0,0.99,80103,0,85,44.9384939,-123.0423034,0,1,8006202019,80068,0,0,485,0.0,0.0,0,0,,,,0,0,0.0,0.61,0,0.0,0,0.0,3,0,0,0,1,127738.6,1588.05,1,,,62,80062,2,1,161,0,160,0,0,262,200,,0,0,1,0,0,0,0,0,2.932472096,0.0,999999,33.166,2.023,2.657,4.306,23982.317,85,0.0,0.0,0.0,0 +7144,7144,,Block 2008,0,25,PedestrianZones,2299391.504,145237.7673,10,0,0,0.03,0,0,0,,0,15397,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2008.0,410470000000000.0,1000000US410470002002008,0.0,0.0,80103,0,108,44.945278,-123.0425307,0,1,8006102008,80068,0,0,540,0.0,0.03,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,1,1,165698.28,1638.79,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.803905688,0.449,999999,9.053,0.694,0.525,0.81,6312.313,108,0.0,0.0,0.0,0 +7145,7145,,Block 2006,0,25,PedestrianZones,2299568.943,145362.5319,10,0,0,1.03,0,0,0,,24345,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2006.0,410470000000000.0,1000000US410470002002006,0.0,0.0,80103,0,112,44.9464505,-123.040333,0,3,8006102006,80068,0,0,541,0.0,1.03,0,2,SPECIAL USE FACILITY,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,262003.23,2497.16,1,,,61,80061,2,4,4,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,6.014761133,0.304,999999,10.18,1.809,0.331,0.501,6835.545,112,0.0,0.0,0.0,0 +7146,7146,,Block 2009,0,25,PedestrianZones,2299461.611,145211.6474,10,0,0,0.67,0,0,0,,3308,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2009.0,410470000000000.0,1000000US410470002002009,0.0,0.0,80103,0,108,44.9450629,-123.0416323,0,1,8006102009,80068,0,0,542,0.0,0.67,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,35599.94,1003.56,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,0.817261419,0.449,999999,9.053,0.694,0.525,0.81,6312.313,108,0.0,0.0,0.0,0 +7147,7147,,Block 2010,0,25,PedestrianZones,2299518.878,145188.2765,10,0,0,1.68,0,0,0,,12415,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2010.0,410470000000000.0,1000000US410470002002010,0.0,0.0,80103,0,109,44.9448689,-123.0408977,0,3,8006102010,80068,0,0,543,0.0,1.68,0,2,SPECIAL USE FACILITY,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,12,0,0,0,1,133611.8,1479.08,1,,,61,80061,2,16,16,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.067302203,0.488,999999,7.894,0.679,0.129,0.184,5169.909,109,0.0,0.0,0.0,0 +7148,7148,,Block 2022,0,25,PedestrianZones,2299640.806,145140.2077,10,0,0,0.0,0,0,0,,17555,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,48,0,0,13,0,0,0,0,0,0,72,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2022.0,410470000000000.0,1000000US410470002002022,0.0,0.0,80103,0,111,44.944471,-123.0393342,0,3,8006302022,80068,0,0,544,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,13,0,0,0,1,188937.23,1739.21,1,,,63,80063,2,53,53,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.337398067,0.202,999999,26.644,2.92,1.952,3.187,19092.218,111,0.202658443,3.453731868,0.913412208,0 +7149,7149,,Block 2040,0,25,PedestrianZones,2299497.953,144773.3347,10,0,0,0.0,0,0,0,,17194,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,11,7,15,0,0,25,0,218,23,0,0,20,0,27,291,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2040.0,410470000000000.0,1000000US410470002002040,0.0,0.07,80103,0,105,44.9411306,-123.0409974,0,3,8006302040,80068,0,0,545,0.0,0.0,0,0,,,,0,0,7.39,0.58,0,1.5,18,0.0,70,0,0,0,1,185034.78,1720.88,1,,,63,80063,2,244,263,0,19,0,0,33,200,,0,0,1,0,0,0,0,0,4.247810208,0.179,999999,33.614,2.987,1.565,2.52,23126.257,105,0.202496149,3.45742093,0.914185574,0 +7150,7150,,Block 2048,0,25,PedestrianZones,2299455.329,144660.8686,10,0,0,0.0,0,0,0,,14293,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,7,6,2,0,0,0,5,0,29,0,0,0,0,0,5,54,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2048.0,410470000000000.0,1000000US410470002002048,0.0,0.02,80103,0,94,44.940107,-123.0414924,0,3,8006302048,80068,0,0,546,0.0,0.0,0,0,,,,0,0,32.33,0.67,0,1.5,18,0.0,27,0,0,0,1,153818.81,1540.31,1,,,63,80063,2,194,198,0,4,0,0,6,200,,0,0,1,0,0,0,0,0,3.531190761,0.179,999999,33.614,2.987,1.565,2.52,23126.257,94,0.202389967,3.452766665,0.913294494,0 +7151,7151,,Block 2046,0,25,PedestrianZones,2299622.332,144724.8008,10,0,0,0.0,0,0,0,,18078,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,89,22,0,0,0,4,0,47,9,0,0,7,0,54,221,0,48,0,0,0,9999,0,0,0,0,0,0,0,1,2046.0,410470000000000.0,1000000US410470002002046,0.0,0.1,80103,0,106,44.9407293,-123.0394028,0,3,8006602046,80068,0,0,547,0.0,0.0,0,0,,,,0,0,5.11,0.56,0,1.5,18,0.0,107,0,0,0,1,194551.15,1764.79,1,,,66,80066,2,230,255,0,25,0,0,45,200,,0,0,1,0,0,0,0,0,4.466275979,0.178,999999,34.851,2.507,1.527,2.376,23825.164,106,0.203072306,3.455401784,0.914640791,0 +7152,7152,,Block 1008,0,25,PedestrianZones,2299919.132,145878.7828,10,0,0,0.0,0,0,0,,24230,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,18,0,0,0,0,53,0,0,0,0,0,0,85,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1008.0,410470000000000.0,1000000US410470002001008,0.0,0.0,80103,0,121,44.951193,-123.0361028,0,3,8008501008,80068,0,0,548,0.22,0.22,0,1,NATURAL AREA,UNDEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,260755.62,2250.88,1,,,85,80085,2,73,73,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,5.986120157,0.185,999999,9.759,0.516,2.389,5.16,9548.602,121,0.0,0.0,0.0,0 +7153,7153,,Block 1007,0,25,PedestrianZones,2299862.689,145724.4013,10,0,0,0.0,0,0,0,,17711,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,28,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1007.0,410470000000000.0,1000000US410470002001007,0.0,0.0,80103,0,119,44.9497885,-123.0367564,0,3,8008501007,80068,0,0,549,0.59,0.59,0,1,NATURAL AREA,UNDEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,190601.74,1794.21,1,,,85,80085,2,23,23,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.375609911,0.356,999999,11.298,0.609,1.586,3.289,9335.949,119,0.0,0.0,0.0,0 +7154,7154,,Block 1025,0,25,PedestrianZones,2299802.801,145553.8858,10,0,0,0.0,0,0,0,,32402,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,21,0,0,2,21,0,5,0,0,0,0,0,17,106,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1025.0,410470000000000.0,1000000US410470002001025,0.0,0.02,80103,0,118,44.9482378,-123.0374471,0,3,8008501025,80068,0,0,550,0.0,0.0,0,0,,,,0,0,23.5,0.5,0,0.0,0,0.0,0,0,0,0,1,348704.17,2443.48,1,,,85,80085,2,94,96,0,2,0,0,4,200,,0,0,1,0,0,0,0,0,8.005139182,0.244,999999,13.793,1.972,1.347,2.653,10525.47,118,0.0,0.0,0.0,0 +7155,7155,,Block 2003,0,25,PedestrianZones,2299718.962,145393.9108,10,0,0,0.0,0,0,0,,2222,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2003.0,410470000000000.0,1000000US410470002002003,0.0,0.0,80103,0,115,44.9468545,-123.0377033,0,1,8006102003,80068,0,0,551,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,23906.52,1402.07,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,0.548817704,0.248,999999,14.5,2.095,0.84,1.485,10230.914,115,0.0,0.0,0.0,0 +7156,7156,,Block 2002,0,25,PedestrianZones,2299864.871,145334.069,10,0,0,0.0,0,0,0,,18467,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2002.0,410470000000000.0,1000000US410470002002002,0.0,0.67,80103,0,123,44.9462781,-123.0365734,0,1,8006402002,80068,0,0,552,0.0,0.0,0,0,,,,0,0,0.38,0.75,0,0.0,0,0.0,24,0,0,0,1,198732.94,1771.69,1,,,64,80064,2,6,18,0,12,0,0,16,200,,0,0,1,0,0,0,0,0,4.562276579,0.127,999999,32.894,2.31,1.996,3.666,23398.667,123,0.0,0.0,0.0,0 +7157,7157,,Block 2012,0,25,PedestrianZones,2299618.944,145292.0644,10,0,0,0.0,0,0,0,,1991,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2012.0,410470000000000.0,1000000US410470002002012,0.0,0.0,80103,0,109,44.9458308,-123.0396716,0,1,8006102012,80068,0,0,553,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,21417.82,959.34,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,0.491685082,0.296,999999,12.599,2.016,0.741,1.184,8820.611,109,0.0,0.0,0.0,0 +7158,7158,,Block 2037,0,25,PedestrianZones,2299591.707,145018.9096,10,0,0,0.0,0,0,0,,16481,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,24,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2037.0,410470000000000.0,1000000US410470002002037,0.0,0.17,80103,0,111,44.9433661,-123.0399078,0,3,8006302037,80068,0,0,554,0.0,0.0,0,0,,,,0,0,3.33,0.67,0,1.5,18,0.0,30,0,0,0,1,177368.42,1722.29,1,,,63,80063,2,20,24,0,4,0,0,6,200,,0,0,1,0,0,0,0,0,4.071814944,0.277,999999,27.73,2.672,1.523,2.493,19342.768,111,0.202652971,3.456945071,0.914092594,0 +7159,7159,,Block 1024,0,25,PedestrianZones,2299989.28,145818.9652,10,0,0,0.0,0,0,0,,6279,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,12,19,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1024.0,410470000000000.0,1000000US410470002001024,0.0,0.0,80103,0,124,44.9506748,-123.0351905,0,3,8008501024,80068,0,0,555,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,67575.51,1208.27,1,,,85,80085,2,12,12,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,1.551318946,0.174,999999,10.269,0.579,2.721,5.958,10385.253,124,0.0,0.0,0.0,0 +7160,7160,,Block 1013,0,25,PedestrianZones,2300124.321,145863.5102,10,0,0,0.0,0,0,0,,10025,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,14,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1013.0,410470000000000.0,1000000US410470002001013,0.0,0.31,80103,0,132,44.9511136,-123.0334976,0,3,8008501013,80068,0,0,556,0.0,0.0,0,0,,,,0,0,0.96,0.42,0,0.0,0,0.0,0,0,0,0,1,107887.64,1314.94,1,,,85,80085,2,25,36,0,11,0,0,26,200,,0,0,1,0,0,0,0,0,2.476757193,0.123,999999,9.321,0.51,2.856,5.988,9797.9,132,0.0,0.0,0.0,0 +7161,7161,,Block 2001,0,25,PedestrianZones,2299991.872,145284.9803,10,0,0,0.0,0,0,0,,18039,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,7,0,0,0,0,0,0,113,4,0,0,2,0,0,180,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2001.0,410470000000000.0,1000000US410470002002001,0.0,0.0,80103,0,131,44.9458724,-123.0349453,0,3,8006402001,80068,0,0,557,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,10,0,0,0,1,194134.46,1762.33,1,,,64,80064,2,91,91,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.456710073,0.036,999999,33.106,2.191,2.112,4.042,23775.147,131,0.0,0.0,0.0,0 +7219,7219,,Block 5007,0,25,PedestrianZones,2301785.874,143932.3109,10,0,0,0.0,0,0,0,,20298,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80119,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5007.0,410470000000000.0,1000000US410470009005007,0.0,0.52,80103,0,121,44.9342094,-123.0116897,0,2,8010905007,80082,0,0,628,0.0,0.0,0,0,,,,0,0,0.33,0.36,0,0.0,0,0.0,0,0,0,0,1,218439.35,2204.47,1,,,109,80109,1,26,54,0,28,0,0,78,900,,0,0,1,0,0,0,0,0,5.014672981,0.245,999999,9.85,0.072,3.548,8.414,11688.999,121,0.0,0.0,0.0,0 +7282,7282,,Block 3016,0,25,PedestrianZones,2301383.147,144903.813,10,0,0,0.0,0,0,0,,12942,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3016.0,410470000000000.0,1000000US410470006003016,0.0,1.0,80103,0,144,44.9428353,-123.017173,0,1,8010403016,80082,0,0,820,0.0,0.0,0,0,,,,0,0,0.0,0.65,0,0.0,0,0.0,0,0,0,0,1,139276.72,1498.24,1,,,104,80104,1,0,13,0,13,0,0,20,600,,0,0,1,0,0,0,0,0,3.197350611,0.068,999999,1.875,0.11,4.789,9.981,7587.841,144,0.0,0.0,0.0,0 +7283,7283,,Block 6017,0,25,PedestrianZones,2301504.264,144364.6938,10,0,0,0.0,0,0,0,,12203,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6017.0,410470000000000.0,1000000US410470009006017,0.0,1.0,80103,0,147,44.9380199,-123.0154263,0,1,8010806017,80082,0,0,821,0.0,0.0,0,0,,,,0,0,0.0,0.75,0,0.0,0,0.0,0,0,0,0,1,131330.49,1439.39,1,,,108,80108,1,0,6,0,6,0,0,8,900,,0,0,1,0,0,0,0,0,3.014930485,0.182,999999,3.703,0.158,4.952,10.236,8921.397,147,0.0,0.0,0.0,0 +7284,7284,,Block 1023,0,25,PedestrianZones,2302106.0,145878.231,10,0,0,0.0,0,0,0,,17134,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,1023.0,410470000000000.0,1000000US410470006001023,0.0,0.9,80103,0,93,44.9518024,-123.0084011,0,1,8009901023,80377,0,0,822,0.0,0.0,0,0,,,,0,0,0.04,0.42,0,0.0,0,0.0,0,0,0,0,1,184393.9,1744.01,1,,,99,80099,1,2,21,0,19,0,0,45,600,,0,0,1,0,0,0,0,0,4.233097629,0.195,999999,3.432,0.136,2.785,6.434,6313.815,93,0.0,0.0,0.0,0 +7285,7285,,Block 2023,0,25,PedestrianZones,2301995.412,145028.5112,10,0,0,0.0,0,0,0,,13259,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2023.0,410470000000000.0,1000000US410470006002023,0.0,1.0,80103,0,144,44.9441283,-123.0094675,0,1,8010002023,80082,0,0,823,0.0,0.0,0,0,,,,0,0,0.0,0.43,0,0.0,0,0.0,0,0,0,0,1,142691.78,1515.03,1,,,100,80100,1,0,15,0,15,0,0,35,600,,0,0,1,0,0,0,0,0,3.275749636,0.327,999999,1.879,0.022,3.474,7.965,6299.961,144,0.0,0.0,0.0,0 +7292,7292,,Block 2004,0,25,PedestrianZones,2301584.532,145414.6574,10,0,0,0.0,0,0,0,,30836,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2004.0,410470000000000.0,1000000US410470006002004,0.0,0.78,80103,0,140,44.9474867,-123.0148238,0,1,8010202004,80082,0,0,839,0.0,0.0,0,0,,,,0,0,0.11,0.39,0,0.0,0,0.0,0,0,0,0,1,331854.79,2626.85,1,,,102,80102,1,9,40,0,31,0,0,79,600,,0,0,1,0,0,0,0,0,7.618331005,0.132,999999,2.038,0.141,4.276,9.46,7358.968,140,0.0,0.0,0.0,0 +7296,7296,,Block 4007,0,25,PedestrianZones,2300603.743,144025.4947,10,0,0,0.0,0,0,0,,53542,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80116,0,0,0,0,8,0,0,19,0,22,17,0,6,0,0,0,9,0,0,131,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,4007.0,410470000000000.0,1000000US410470009004007,0.0,0.2,80103,0,157,44.934716,-123.0266963,0,3,8011004007,80068,0,0,851,0.0,0.0,0,0,,,,0,0,1.77,0.44,0,0.0,0,0.0,8,0,0,0,1,576206.19,3016.26,1,,,110,80110,1,110,137,0,27,0,0,62,900,,0,0,1,0,0,0,0,0,13.2278623,0.178,999999,26.072,0.531,3.815,7.306,21361.722,157,0.0,0.0,0.0,0 +7297,7297,,Block 6014,0,25,PedestrianZones,2300815.114,144395.9933,10,0,0,0.0,0,0,0,,14818,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6014.0,410470000000000.0,1000000US410470009006014,0.0,0.74,80103,0,144,44.938108,-123.0241663,0,1,8010606014,80068,0,0,852,0.0,0.0,0,0,,,,0,0,0.19,0.52,0,0.0,0,0.0,35,0,0,0,1,159464.53,1600.14,1,,,106,80106,1,10,38,0,28,0,0,54,900,,0,0,1,0,0,0,0,0,3.66079856,0.136,999999,16.453,0.082,4.365,8.286,15833.15,144,0.204184595,3.343854546,0.897199052,0 +7323,7323,,Block 2023,0,25,PedestrianZones,2299767.663,145088.0396,10,0,0,0.0,0,0,0,,18433,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2023.0,410470000000000.0,1000000US410470002002023,0.0,0.0,80103,0,121,44.9440376,-123.0377068,0,3,8006502023,80068,0,0,912,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,184,0,0,0,1,198374.13,1782.26,1,,,65,80065,2,23,23,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.554039416,0.16,999999,32.048,3.182,0.829,1.317,21353.907,121,0.203248528,3.45380736,0.914144347,0 +7324,7324,,Block 2036,0,25,PedestrianZones,2299694.447,144908.1055,10,0,0,0.0,0,0,0,,36459,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,121,0,6,0,6,6,0,106,6,0,0,0,0,97,447,0,5,0,0,0,9999,0,0,0,0,0,0,0,1,2036.0,410470000000000.0,1000000US410470002002036,0.0,0.01,80103,0,111,44.9423985,-123.0385624,0,3,8006602036,80068,0,0,913,0.0,0.0,0,0,,,,0,0,50.5,0.75,0,1.5,18,1.95,745,0,0,0,1,392369.56,2633.14,1,,,66,80066,2,404,410,0,6,0,0,8,200,,0,0,1,0,0,0,0,0,9.007557625,0.198,999999,34.347,2.758,1.788,2.878,23823.909,111,0.202920928,3.455065175,0.914187837,0 +7325,7325,,Block 2034,0,25,PedestrianZones,2299895.735,145039.7033,10,0,0,0.0,0,0,0,,17642,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,29,0,0,0,0,3,0,73,0,0,0,11,0,283,221,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2034.0,410470000000000.0,1000000US410470002002034,0.0,0.0,80103,0,118,44.943639,-123.0360654,0,3,8006502034,80068,0,0,914,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,46,0,0,0,1,189861.77,1743.42,1,,,65,80065,2,327,327,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.35862266,0.135,999999,44.141,3.575,2.41,3.91,30752.379,118,0.203919148,3.45016925,0.914425286,0 +7326,7326,,Block 2035,0,25,PedestrianZones,2299847.214,144917.1519,10,0,0,0.0,0,0,0,,17843,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,75,49,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2035.0,410470000000000.0,1000000US410470002002035,0.0,0.0,80103,0,116,44.942523,-123.0366312,0,3,8006502035,80068,0,0,915,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,43,0,0,0,1,192025.88,1753.35,1,,,65,80065,2,84,84,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.40830376,0.111,999999,35.849,2.582,2.682,4.346,25724.807,116,0.203936751,3.451777614,0.914928932,0 +7327,7327,,Block 2044,0,25,PedestrianZones,2299798.208,144795.3508,10,0,0,0.0,0,0,0,,17933,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,33,0,0,0,0,0,0,4,0,0,0,0,0,15,53,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2044.0,410470000000000.0,1000000US410470002002044,0.0,0.06,80103,0,114,44.9414136,-123.0372034,0,3,8006602044,80068,0,0,916,0.0,0.0,0,0,,,,0,0,10.29,0.71,0,1.5,18,0.0,65,0,0,0,1,192995.99,1757.52,1,,,66,80066,2,72,77,0,5,0,0,7,200,,0,0,1,0,0,0,0,0,4.430574461,0.274,999999,38.776,2.65,1.686,2.646,26509.882,114,0.203890535,3.452602528,0.915158181,0 +7328,7328,,Block 2045,0,25,PedestrianZones,2299750.817,144674.4776,10,0,0,0.0,0,0,0,,17896,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,1,105,10,0,0,0,0,0,101,0,0,0,56,0,26,281,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2045.0,410470000000000.0,1000000US410470002002045,0.0,0.07,80103,0,116,44.9403129,-123.0377555,0,3,8006702045,80068,0,0,917,0.0,0.0,0,0,,,,0,0,7.64,0.55,0,1.5,18,0.0,84,0,0,0,1,192591.07,1755.9,1,,,67,80067,2,336,360,0,24,0,0,44,200,,0,0,1,0,0,0,0,0,4.421278736,0.196,999999,35.058,2.257,1.737,2.72,24178.391,116,0.203711401,3.451710375,0.914876577,0 +7329,7329,,Block 2049,0,25,PedestrianZones,2299706.187,144560.0837,10,0,0,0.0,0,0,0,,15802,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,5,25,1,0,0,20,2,0,52,17,0,0,12,0,15,180,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2049.0,410470000000000.0,1000000US410470002002049,0.0,0.04,80103,0,107,44.9392714,-123.0382752,0,3,8006702049,80068,0,0,918,0.0,0.0,0,0,,,,0,0,20.63,0.75,0,1.5,18,0.0,45,0,0,0,1,170057.07,1654.12,1,,,67,80067,2,165,171,0,6,0,0,8,200,,0,0,1,0,0,0,0,0,3.903969787,0.041,999999,38.478,3.466,1.816,2.925,26498.387,107,0.203437922,3.446416393,0.913685823,0 +7330,7330,,Block 2033,0,25,PedestrianZones,2300021.8,144991.583,10,0,0,0.0,0,0,0,,17936,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,0,0,0,482,0,0,0,0,0,39,383,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2033.0,410470000000000.0,1000000US410470002002033,0.0,0.0,80103,0,128,44.9432418,-123.0344497,0,3,8006502033,80068,0,0,919,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,506,0,0,0,1,193026.1,1758.15,1,,,65,80065,2,432,432,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.431265582,0.044,999999,50.136,1.315,2.388,4.343,34866.733,128,0.204682198,3.443442365,0.914239874,0 +7331,7331,,Block 2000,0,25,PedestrianZones,2300152.908,145334.4588,10,0,0,0.0,0,0,0,,44395,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,23,18,4,0,0,19,0,68,0,0,0,17,0,3,270,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2000.0,410470000000000.0,1000000US410470002002000,0.0,0.2,80103,0,139,44.9463629,-123.0329253,0,3,8006902000,80068,0,0,920,0.0,0.0,0,0,,,,0,0,2.48,0.63,0,0.0,0,0.0,43,0,0,0,1,477765.95,3334.52,1,,,69,80069,2,176,221,0,45,0,0,71,200,,0,0,1,0,0,0,0,0,10.96798735,0.0,999999,30.913,1.372,2.579,5.322,23190.376,139,0.0,0.0,0.0,0 +7332,7332,,Block 2042,0,25,PedestrianZones,2299973.081,144868.1591,10,0,0,0.0,0,0,0,,17969,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,16,0,0,0,169,11,0,181,0,0,0,2,0,4,449,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2042.0,410470000000000.0,1000000US410470002002042,0.0,0.0,80103,0,125,44.9421179,-123.0350176,0,3,8006802042,80068,0,0,921,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,58,0,0,0,1,193377.89,1758.96,1,,,68,80068,2,361,361,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.439341657,0.11,999999,45.269,2.337,2.215,3.613,31284.253,125,0.2047289,3.445099918,0.914769808,0 +7333,7333,,Block 2027,0,25,PedestrianZones,2300197.663,145063.9881,10,0,0,0.0,0,0,0,,18196,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,6,0,0,90,0,0,0,184,0,9999,0,0,0,0,0,0,0,1,2027.0,410470000000000.0,1000000US410470002002027,0.0,0.0,80103,0,146,44.9439427,-123.032251,0,3,8006802027,80068,0,0,922,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,46,0,0,0,1,195825.43,1770.91,1,,,68,80068,2,88,88,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.4955293,0.124,999999,37.797,1.191,2.081,3.931,26706.495,146,0.205244138,3.425881785,0.912165741,0 +7334,7334,,Block 2032,0,25,PedestrianZones,2300148.082,144940.6796,10,0,0,0.0,0,0,0,,18193,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,2,0,0,0,0,66,0,39,0,0,0,11,0,0,178,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2032.0,410470000000000.0,1000000US410470002002032,0.0,0.12,80103,0,140,44.9428196,-123.03283,0,3,8006802032,80068,0,0,923,0.0,0.0,0,0,,,,0,0,4.16,0.57,0,0.0,0,0.0,46,0,0,0,1,195793.14,1769.81,1,,,68,80068,2,154,175,0,21,0,0,37,200,,0,0,1,0,0,0,0,0,4.49478804,0.195,999999,39.914,2.499,2.535,4.812,28624.811,140,0.20544842,3.432218081,0.91349744,0 +7335,7335,,Block 2052,0,25,PedestrianZones,2300004.872,144574.8991,10,0,0,0.0,0,0,0,,17506,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,173,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2052.0,410470000000000.0,1000000US410470002002052,0.0,0.0,80103,0,132,44.939489,-123.0344984,0,3,8006702052,80068,0,0,924,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,250,0,0,0,1,188398.16,1736.77,1,,,67,80067,2,219,219,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.325022887,0.039,999999,31.231,0.0,0.346,0.402,20244.51,132,0.204996475,3.432843528,0.913318743,0 +7336,7336,,Block 2041,0,25,PedestrianZones,2300100.253,144819.2023,10,0,0,0.0,0,0,0,,17490,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,13,0,13,0,0,0,0,28,0,0,0,0,0,0,83,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2041.0,410470000000000.0,1000000US410470002002041,0.0,0.14,80103,0,140,44.9417134,-123.0333875,0,3,8006802041,80068,0,0,925,0.0,0.0,0,0,,,,0,0,4.85,0.77,0,0.0,0,0.0,145,0,0,0,1,188219.02,1736.9,1,,,68,80068,2,63,73,0,10,0,0,13,200,,0,0,1,0,0,0,0,0,4.320910266,0.12,999999,57.275,2.248,2.352,3.84,39113.459,140,0.20547692,3.435271762,0.914136402,0 +7337,7337,,Block 2017,0,25,PedestrianZones,2299341.379,144355.4172,10,0,0,0.0,0,0,0,,19909,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,68,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2017.0,410470000000000.0,1000000US410470002002017,0.0,0.02,80135,0,82,44.9373272,-123.0428137,0,3,8006202017,80068,0,0,926,0.0,0.0,0,0,,,,0,0,26.5,0.5,0,0.0,0,0.0,14,0,0,0,1,214251.88,1876.13,1,,,62,80062,2,53,54,0,1,0,0,2,200,,0,0,1,0,0,0,0,0,4.918541995,0.048,999999,36.733,2.129,4.267,7.017,28000.342,82,0.0,0.0,0.0,0 +7338,7338,,Block 3042,0,25,PedestrianZones,2299428.624,144225.7478,10,0,0,11.88,0,0,0,,65202,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,179,0,0,0,0,0,0,5,0,1,156,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3042.0,410470000000000.0,1000000US410470002003042,0.0,0.0,80135,0,86,44.9361855,-123.0416571,0,3,8007103042,80068,0,0,927,0.0,11.88,0,2,SPECIAL USE FACILITY,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,378,0,0,0,1,701694.24,4002.19,1,,,71,80071,2,298,298,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,16.10866892,0.042,999999,31.039,1.392,2.904,4.748,22904.008,86,0.0,0.0,0.0,0 +7339,7339,,Block 3040,0,25,PedestrianZones,2299664.219,144449.9753,10,0,0,0.0,0,0,0,,15726,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,4,4,0,0,0,237,0,0,11,0,0,0,0,0,1,191,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3040.0,410470000000000.0,1000000US410470002003040,0.0,0.0,80103,0,100,44.9382691,-123.0387629,0,3,8007203040,80068,0,0,928,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,18,0.0,41,0,0,0,1,169242.28,1648.59,1,,,72,80072,2,238,238,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.885264701,0.119,999999,75.077,1.154,2.439,3.78,50468.699,100,0.203051372,3.439949069,0.912096031,0 +7340,7340,,Block 3046,0,25,PedestrianZones,2299622.875,144342.9504,10,0,0,1.05,0,0,0,,15176,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,84,0,0,0,0,10,0,4,0,0,0,3,0,2,109,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3046.0,410470000000000.0,1000000US410470002003046,0.0,0.0,80103,0,95,44.9372947,-123.0392439,0,3,8007303046,80068,0,0,929,0.0,1.05,0,3,LINEAR PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,2.23,262,0,0,0,1,163326.49,1633.65,1,,,73,80073,2,81,81,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.74945699,0.179,999999,33.063,1.897,2.633,4.237,23871.92,95,0.202612449,3.431515867,0.910035514,0 +7343,7343,,Block 3009,0,25,PedestrianZones,2300993.307,145006.3993,10,0,0,0.0,0,0,0,,100809,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,101,0,0,5,0,0,0,0,0,0,0,0,229,0,0,2107,0,2107,9999,0,0,0,0,0,0,0,4,3009.0,410470000000000.0,1000000US410470006003009,0.0,0.03,80103,0,141,44.9436486,-123.022151,0,3,8010303009,80082,0,0,938,0.0,0.0,0,0,,,,0,0,23.88,0.75,0,0.0,0,0.0,7,0,0,0,1,1084884.01,4413.34,1,,,103,80103,1,191,197,0,6,0,0,8,600,,0,0,1,0,0,0,0,0,24.90548781,0.142,999999,8.917,0.525,4.93,10.021,12120.729,141,0.0,0.0,0.0,0 +7344,7344,,Block 1016,0,25,PedestrianZones,2301281.375,145828.3702,10,0,0,0.0,0,0,0,,26552,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,30,0,0,0,61,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1016.0,410470000000000.0,1000000US410470006001016,0.0,0.32,80103,0,152,44.951123,-123.0188272,0,3,8009801016,80082,0,0,939,0.0,0.0,0,0,,,,0,0,0.92,0.44,0,0.0,0,0.0,0,0,0,0,1,285745.05,3850.01,1,,,98,80098,1,57,84,0,27,0,0,62,600,,0,0,1,0,0,0,0,0,6.559798025,0.241,999999,4.079,0.211,4.401,10.002,9011.416,152,0.0,0.0,0.0,0 +7351,7351,,Block 3038,0,25,PedestrianZones,2300141.699,146181.9748,10,0,0,0.0,0,0,0,,9902,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,1,0,0,0,0,0,0,0,23,0,2,0,0,0,0,0,3,21,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3038.0,410470000000000.0,1000000US410470003003038,0.0,0.07,80103,0,126,44.953983,-123.033404,0,3,8008903038,80068,0,0,999,0.0,0.0,0,0,,,,0,0,9.0,0.67,0,0.0,0,0.0,0,0,0,0,1,106566.9,1306.11,1,,,89,80089,2,27,29,0,2,0,0,3,300,,0,0,1,0,0,0,0,0,2.446437262,0.123,999999,5.838,0.219,2.718,5.279,7114.746,126,0.0,0.0,0.0,0 +7352,7352,,Block 1010,0,25,PedestrianZones,2300010.521,146124.5363,10,0,0,0.0,0,0,0,,10570,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1010.0,410470000000000.0,1000000US410470002001010,0.0,0.0,80103,0,121,44.9534294,-123.0350429,0,1,8008501010,80068,0,0,1000,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,113753.29,1352.13,1,,,85,80085,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.611413804,0.303,999999,7.558,0.461,2.001,3.916,7343.394,121,0.0,0.0,0.0,0 +7353,7353,,Block 1009,0,25,PedestrianZones,2299973.833,146029.5368,10,0,0,0.0,0,0,0,,10946,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,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,9999,0,0,0,0,0,0,0,1,1009.0,410470000000000.0,1000000US410470002001009,0.0,0.0,80103,0,120,44.9525645,-123.0354699,0,3,8008501009,80068,0,0,1001,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,117796.9,1374.37,1,,,85,80085,2,27,27,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.704242413,0.243,999999,9.399,0.621,2.203,4.411,8838.618,120,0.0,0.0,0.0,0 +7354,7354,,Block 1000,0,25,PedestrianZones,2300126.272,146413.835,10,0,0,0.0,0,0,0,,12182,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,33,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1000.0,410470000000000.0,1000000US410470002001000,0.0,0.05,80103,0,117,44.9560642,-123.0336916,0,3,8008501000,80068,0,0,1002,0.0,0.0,0,0,,,,0,0,9.25,0.5,0,0.0,0,0.0,0,0,0,0,1,131099.85,1471.78,1,,,85,80085,2,37,39,0,2,0,0,4,200,,0,0,1,0,0,0,0,0,3.009635704,0.24,999999,4.548,0.114,2.293,4.148,5565.433,117,0.0,0.0,0.0,0 +7355,7355,,Block 1002,0,25,PedestrianZones,2300082.96,146313.8911,10,0,0,0.0,0,0,0,,10975,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,38,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1002.0,410470000000000.0,1000000US410470002001002,0.0,0.0,80103,0,115,44.955153,-123.0342005,0,3,8008501002,80068,0,0,1003,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,118111.23,1375.52,1,,,85,80085,2,38,38,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.711458287,0.246,999999,5.975,0.124,2.618,4.841,6922.623,115,0.0,0.0,0.0,0 +7356,7356,,Block 1011,0,25,PedestrianZones,2300047.25,146218.4289,10,0,0,0.0,0,0,0,,10584,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,15,0,7,0,0,0,9999,0,0,0,0,0,0,0,1,1011.0,410470000000000.0,1000000US410470002001011,0.0,0.0,80103,0,114,44.9542843,-123.034615,0,3,8008501011,80068,0,0,1004,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,113906.3,1351.05,1,,,85,80085,2,46,46,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.614926619,0.244,999999,6.301,0.191,2.351,4.414,6857.734,114,0.0,0.0,0.0,0 +7357,7357,,Block 3032,0,25,PedestrianZones,2300216.427,146370.4772,10,0,0,0.0,0,0,0,,10025,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3032.0,410470000000000.0,1000000US410470003003032,0.0,0.6,80103,0,133,44.9556997,-123.0325323,0,1,8008903032,80068,0,0,1005,0.0,0.0,0,0,,,,0,0,0.38,0.56,0,0.0,0,0.0,0,0,0,0,1,107886.13,1314.5,1,,,89,80089,2,12,30,0,18,0,0,32,300,,0,0,1,0,0,0,0,0,2.476722587,0.125,999999,6.593,0.145,2.751,5.23,7567.022,133,0.0,0.0,0.0,0 +7358,7358,,Block 3039,0,25,PedestrianZones,2300105.731,146087.4502,10,0,0,0.0,0,0,0,,9825,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3039.0,410470000000000.0,1000000US410470003003039,0.0,0.48,80103,0,128,44.9531227,-123.0338221,0,3,8008903039,80068,0,0,1006,0.0,0.0,0,0,,,,0,0,1.0,0.91,0,0.0,0,0.0,0,0,0,0,1,105737.18,1300.71,1,,,89,80089,2,11,21,0,10,0,0,11,300,,0,0,1,0,0,0,0,0,2.427389405,0.248,999999,7.282,0.437,2.283,4.528,7558.169,128,0.0,0.0,0.0,0 +7391,7391,,Block 2009,0,25,PedestrianZones,2301257.004,145441.8251,10,0,0,0.0,0,0,0,,10933,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2009.0,410470000000000.0,1000000US410470006002009,0.0,0.93,80103,0,143,44.9476393,-123.0189832,0,1,8010202009,80082,0,0,1082,0.0,0.0,0,0,,,,0,0,0.03,0.35,0,0.0,0,0.0,0,0,0,0,1,117658.49,1378.85,1,,,102,80102,1,1,14,0,13,0,0,37,600,,0,0,1,0,0,0,0,0,2.701064931,0.13,999999,2.122,0.146,4.203,9.116,7192.44,143,0.0,0.0,0.0,0 +7392,7392,,Block 2014,0,25,PedestrianZones,2301201.069,145286.692,10,0,0,0.0,0,0,0,,19887,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2014.0,410470000000000.0,1000000US410470006002014,0.0,0.97,80103,0,149,44.9462282,-123.0196303,0,1,8010202014,80082,0,0,1083,0.0,0.0,0,0,,,,0,0,0.01,0.38,0,0.0,0,0.0,0,0,0,0,1,214017.95,2068.44,1,,,102,80102,1,1,36,0,35,0,0,93,600,,0,0,1,0,0,0,0,0,4.913171827,0.105,999999,9.881,0.026,4.034,8.222,11585.884,149,0.0,0.0,0.0,0 +7393,7393,,Block 2010,0,25,PedestrianZones,2301346.235,145409.5865,10,0,0,0.0,0,0,0,,10675,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2010.0,410470000000000.0,1000000US410470006002010,0.0,1.0,80103,0,139,44.9473743,-123.0178402,0,1,8010202010,80082,0,0,1084,0.0,0.0,0,0,,,,0,0,0.0,0.38,0,0.0,0,0.0,0,0,0,0,1,114887.08,1367.75,1,,,102,80102,1,0,13,0,13,0,0,34,600,,0,0,1,0,0,0,0,0,2.637442033,0.092,999999,2.185,0.164,4.18,9.272,7332.89,139,0.0,0.0,0.0,0 +7394,7394,,Block 3019,0,25,PedestrianZones,2301337.984,144792.2692,10,0,0,0.0,0,0,0,,12251,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3019.0,410470000000000.0,1000000US410470006003019,0.0,0.93,80103,0,144,44.9418193,-123.017701,0,1,8010403019,80082,0,0,1085,0.0,0.0,0,0,,,,0,0,0.05,0.65,0,0.0,0,0.0,0,0,0,0,1,131839.36,1449.41,1,,,104,80104,1,1,14,0,13,0,0,20,600,,0,0,1,0,0,0,0,0,3.026612467,0.149,999999,2.597,0.094,4.994,9.793,7929.113,144,0.0,0.0,0.0,0 +7395,7395,,Block 1017,0,25,PedestrianZones,2301447.116,145919.2482,10,0,0,0.0,0,0,0,,14419,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1017.0,410470000000000.0,1000000US410470006001017,0.0,0.95,80103,0,142,44.951987,-123.0167636,0,1,8009801017,80082,0,0,1086,0.0,0.0,0,0,,,,0,0,0.02,0.44,0,0.0,0,0.0,0,0,0,0,1,155174.4,1704.42,1,,,98,80098,1,1,22,0,21,0,0,48,600,,0,0,1,0,0,0,0,0,3.562310865,0.268,999999,4.704,0.26,3.707,8.547,8480.937,142,0.0,0.0,0.0,0 +7396,7396,,Block 1018,0,25,PedestrianZones,2301602.401,145858.961,10,0,0,0.0,0,0,0,,12918,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,1018.0,410470000000000.0,1000000US410470006001018,0.0,1.0,80103,0,128,44.9514882,-123.0147727,0,1,8009801018,80082,0,0,1087,0.0,0.0,0,0,,,,0,0,0.0,0.47,0,0.0,0,0.0,0,0,0,0,1,139021.53,1580.49,1,,,98,80098,1,0,20,0,20,0,0,43,600,,0,0,1,0,0,0,0,0,3.191492339,0.164,999999,4.453,0.195,3.58,8.145,8062.296,128,0.0,0.0,0.0,0 +7421,7421,,Block 2016,0,25,PedestrianZones,2299438.949,144555.5916,10,0,0,0.0,0,0,0,,8402,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,5,0,7,0,0,0,0,53,0,0,0,11,0,4,52,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2016.0,410470000000000.0,1000000US410470002002016,0.0,0.0,80103,0,85,44.9391554,-123.0416578,0,3,8006302016,80068,0,0,1163,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,10,0,0,0,1,90421.35,1364.72,1,,,63,80063,2,129,129,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.075786718,0.026,999999,34.207,2.156,2.581,4.108,24521.474,85,0.203407057,3.468046144,0.917601628,0 +7441,7441,,Block 2019,0,25,PedestrianZones,2301767.423,145304.3324,10,0,0,0.0,0,0,0,,23174,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2019.0,410470000000000.0,1000000US410470006002019,0.0,0.97,80103,0,153,44.9465455,-123.0124638,0,1,8010002019,80082,0,0,1204,0.0,0.0,0,0,,,,0,0,0.01,0.41,0,0.0,0,0.0,0,0,0,0,1,249396.1,2126.45,1,,,100,80100,1,1,31,0,30,0,0,74,600,,0,0,1,0,0,0,0,0,5.725341532,0.179,999999,1.965,0.171,4.086,9.112,7089.395,153,0.0,0.0,0.0,0 +7445,7445,,Block 1024,0,25,PedestrianZones,2301346.567,145690.7224,10,0,0,5.57,0,0,0,,46573,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1024.0,410470000000000.0,1000000US410470006001024,4.49,0.93,80103,0,151,44.9499032,-123.017947,0,1,8009801024,80082,0,0,1209,0.0,5.57,0,2,SPECIAL USE FACILITY,DEVELOPED,,0,0,0.03,0.41,0,0.0,0,0.0,0,0,0,0,1,501208.89,2892.17,1,,,98,80098,1,2,27,0,25,0,0,61,600,,0,0,1,0,0,0,0,0,11.50616266,0.143,999999,1.442,0.252,4.572,10.594,7703.425,151,0.0,0.0,0.0,0 +7447,7447,,Block 1029,0,25,PedestrianZones,2300237.515,145525.4722,10,0,0,0.04,0,0,0,,20517,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,2,0,0,0,0,9,0,0,0,0,0,0,14,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1029.0,410470000000000.0,1000000US410470002001029,500.0,0.61,80103,0,147,44.9481049,-123.0319295,0,1,8008401029,80068,0,0,1217,0.0,0.04,0,2,HISTORICAL AREA,DEVELOPED,,0,0,0.24,0.37,0,0.0,0,0.0,0,0,0,0,1,220800.99,2959.42,1,,,84,80084,2,13,33,0,20,0,0,54,200,,0,0,1,0,0,0,0,0,5.068888809,0.145,999999,17.114,0.292,4.039,7.951,16041.359,147,0.0,0.0,0.0,0 +7448,7448,,Block 1019,0,25,PedestrianZones,2300566.299,145578.2118,10,0,0,0.0,0,0,0,,10723,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1019.0,410470000000000.0,1000000US410470002001019,0.0,1.0,80103,0,153,44.9486719,-123.0277859,0,1,8008401019,80082,0,0,1218,0.0,0.0,0,0,,,,0,0,0.0,0.34,0,0.0,0,0.0,0,0,0,0,1,115399.49,1352.94,1,,,84,80084,2,0,16,0,16,0,0,47,200,,0,0,1,0,0,0,0,0,2.649205468,0.0,999999,23.156,0.228,4.091,8.208,20072.538,153,0.0,0.0,0.0,0 +7449,7449,,Block 3020,0,25,PedestrianZones,2300532.089,144791.2461,10,0,0,0.0,0,0,0,,16937,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,571,0,0,26,0,0,0,0,0,0,1371,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3020.0,410470000000000.0,1000000US410470002003020,0.0,0.0,80103,0,120,44.9415836,-123.0279072,0,3,8008103020,80068,0,0,1219,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,231,0,0,0,1,182274.2,1701.66,1,,,81,80081,2,983,983,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.184436145,0.2,999999,64.241,1.026,3.011,5.273,44488.942,120,0.206612501,3.391937434,0.908766837,0 +7450,7450,,Block 3024,0,25,PedestrianZones,2301072.16,144715.8095,10,0,0,0.0,0,0,0,,15390,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3024.0,410470000000000.0,1000000US410470006003024,0.0,0.77,80103,0,145,44.9410569,-123.0210374,0,1,8010403024,80082,0,0,1221,0.0,0.0,0,0,,,,0,0,0.15,0.51,0,0.0,0,0.0,0,0,0,0,1,165622.65,1762.08,1,,,104,80104,1,8,35,0,27,0,0,53,600,,0,0,1,0,0,0,0,0,3.80216949,0.215,999999,31.379,0.571,4.2,8.107,25270.482,145,0.0,0.0,0.0,0 +7482,7482,,Block 6009,0,25,PedestrianZones,2300703.204,144439.8401,10,0,0,0.0,0,0,0,,16119,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,2,0,0,108,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6009.0,410470000000000.0,1000000US410470009006009,0.0,0.11,80103,0,134,44.9384709,-123.0256009,0,3,8010606009,80068,0,0,7802,0.0,0.0,0,0,,,,0,0,6.0,0.73,0,0.0,0,0.0,123,0,0,0,1,173467.41,1664.38,1,,,106,80106,1,90,101,0,11,0,0,15,900,,0,0,1,0,0,0,0,0,3.982260358,0.04,999999,47.833,0.532,3.625,7.036,35116.244,134,0.204960782,3.358571447,0.900799433,0 +7485,7485,,Block 6024,0,25,PedestrianZones,2301192.695,144105.6528,10,0,0,0.0,0,0,0,,16329,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,11,0,0,0,0,10,0,0,0,0,0,0,0,0,45,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6024.0,410470000000000.0,1000000US410470009006024,0.0,0.3,80103,0,170,44.9356025,-123.0192698,0,3,8010806024,80082,0,0,7805,0.0,0.0,0,0,,,,0,0,1.88,0.81,0,0.0,0,0.0,0,0,0,0,1,175726.06,1678.61,1,,,108,80108,1,30,43,0,13,0,0,16,900,,0,0,1,0,0,0,0,0,4.034111622,0.153,999999,4.556,0.13,5.345,10.433,9593.309,170,0.0,0.0,0.0,0 +7489,7489,,Block 3030,0,25,PedestrianZones,2300608.461,144583.8289,10,0,0,0.0,0,0,0,,10876,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,135,0,0,3,0,0,0,0,0,0,89,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3030.0,410470000000000.0,1000000US410470002003030,0.0,0.31,80103,0,127,44.9397394,-123.0268578,0,3,8008003030,80068,0,0,7816,0.0,0.0,0,0,,,,0,0,1.34,0.61,0,0.0,0,0.0,65,0,0,0,1,117043.23,1486.67,1,,,80,80080,2,82,119,0,37,0,0,61,200,,0,0,1,0,0,0,0,0,2.686940355,0.123,999999,44.552,0.677,3.562,6.682,32789.736,127,0.206003481,3.378437143,0.905643694,0 +7490,7490,,Block 3013,0,25,PedestrianZones,2301111.134,144855.9022,10,0,0,0.0,0,0,0,,19510,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3013.0,410470000000000.0,1000000US410470006003013,0.0,0.92,80103,0,144,44.942328,-123.0205992,0,1,8010403013,80082,0,0,7817,0.0,0.0,0,0,,,,0,0,0.05,0.55,0,0.0,0,0.0,0,0,0,0,1,209958.83,2045.9,1,,,104,80104,1,2,26,0,24,0,0,44,600,,0,0,1,0,0,0,0,0,4.819987283,0.211,999999,22.355,0.527,4.932,9.929,20662.071,144,0.0,0.0,0.0,0 +7504,7504,,Block 3034,0,25,PedestrianZones,2300273.079,146241.4141,10,0,0,0.0,0,0,0,,10420,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3034.0,410470000000000.0,1000000US410470003003034,0.0,0.87,80103,0,140,44.9545548,-123.0317633,0,1,8008903034,80068,0,0,7846,0.0,0.0,0,0,,,,0,0,0.13,0.81,0,0.0,0,0.0,0,0,0,0,1,112135.76,1339.59,1,,,89,80089,2,2,15,0,13,0,0,16,300,,0,0,1,0,0,0,0,0,2.574280555,0.121,999999,5.37,0.164,2.884,5.747,7115.356,140,0.0,0.0,0.0,0 +7505,7505,,Block 3030,0,25,PedestrianZones,2300404.722,146297.191,10,0,0,0.0,0,0,0,,10155,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3030.0,410470000000000.0,1000000US410470003003030,0.0,1.0,80103,0,155,44.9550936,-123.0301178,0,1,8008903030,80082,0,0,7847,0.0,0.0,0,0,,,,0,0,0.0,0.56,0,0.0,0,0.0,0,0,0,0,1,109291.12,1320.0,1,,,89,80089,2,0,25,0,25,0,0,45,300,,0,0,1,0,0,0,0,0,2.508976636,0.0,999999,6.21,0.22,3.68,7.439,8734.805,155,0.0,0.0,0.0,0 +7506,7506,,Block 3024,0,25,PedestrianZones,2300359.609,146514.0889,10,0,0,0.0,0,0,0,,11184,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3024.0,410470000000000.0,1000000US410470003003024,0.0,1.0,80103,0,147,44.9570318,-123.0307754,0,1,8008803024,80417,0,0,7848,0.0,0.0,0,0,,,,0,0,0.0,0.54,0,0.0,0,0.0,0,0,0,0,1,120364.1,1383.45,1,,,88,80088,1,0,38,0,38,0,0,71,300,,0,0,1,0,0,0,0,0,2.76317703,0.138,999999,5.145,0.146,2.88,5.455,6784.034,147,0.0,0.0,0.0,0 +7507,7507,,Block 4029,0,25,PedestrianZones,2300501.44,146258.1229,10,0,0,0.0,0,0,0,,10581,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4029.0,410470000000000.0,1000000US410470003004029,0.0,1.0,80103,0,169,44.9547694,-123.0288771,0,1,8009104029,80082,0,0,7849,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,113875.09,1350.93,1,,,91,80091,1,0,11,0,11,0,0,28,300,,0,0,1,0,0,0,0,0,2.614210086,0.065,999999,5.643,0.15,4.058,8.272,8905.542,169,0.0,0.0,0.0,0 +7508,7508,,Block 4040,0,25,PedestrianZones,2300391.03,145974.5645,10,0,0,0.0,0,0,0,,10564,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,11,0,0,0,0,18,0,4,0,0,0,9,0,0,40,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4040.0,410470000000000.0,1000000US410470003004040,0.0,0.0,80103,0,157,44.9521877,-123.0301632,0,3,8009004040,80082,0,0,7850,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,18,0,0,0,1,113691.92,1350.1,1,,,90,80090,1,46,46,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,2.610005033,0.124,999999,7.173,0.206,3.773,8.04,9736.281,157,0.0,0.0,0.0,0 +7509,7509,,Block 4037,0,25,PedestrianZones,2300594.952,146023.5922,10,0,0,0.0,0,0,0,,3207,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4037.0,410470000000000.0,1000000US410470003004037,0.0,0.4,80103,0,169,44.9526862,-123.0275995,0,3,8009104037,80082,0,0,7851,0.0,0.0,0,0,,,,0,0,1.0,0.67,0,0.0,0,0.0,0,0,0,0,1,34512.27,920.49,1,,,91,80091,1,3,5,0,2,0,0,3,300,,0,0,1,0,0,0,0,0,0.792292059,0.124,999999,6.016,0.205,4.157,9.114,9682.938,169,0.0,0.0,0.0,0 +7510,7510,,Block 4003,0,25,PedestrianZones,2300691.138,147028.3228,10,0,0,0.0,0,0,0,,10756,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,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,9999,0,0,0,0,0,0,0,3,4003.0,410470000000000.0,1000000US410470003004003,0.0,0.93,80103,0,131,44.9617507,-123.0267793,0,1,8009304003,80417,0,0,7852,0.0,0.0,0,0,,,,0,0,0.03,0.39,0,0.0,0,0.0,0,0,0,0,1,115755.78,1365.47,1,,,93,80093,1,1,14,0,13,0,0,33,300,,0,0,1,0,0,0,0,0,2.657384744,0.056,999999,4.352,1.398,2.426,5.704,6436.347,131,0.0,0.0,0.0,0 +7511,7511,,Block 4011,0,25,PedestrianZones,2300873.379,146784.244,10,0,0,0.0,0,0,0,,10815,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4011.0,410470000000000.0,1000000US410470003004011,0.0,1.0,80103,0,158,44.9596065,-123.0243737,0,1,8009304011,80417,0,0,7853,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,116390.63,1367.6,1,,,93,80093,1,0,19,0,19,0,0,46,300,,0,0,1,0,0,0,0,0,2.671958788,0.206,999999,3.112,0.225,3.922,9.314,7952.286,158,0.0,0.0,0.0,0 +7535,7535,,Block 4001,0,25,PedestrianZones,2300880.409,147018.938,10,0,0,0.0,0,0,0,,11426,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4001.0,410470000000000.0,1000000US410470003004001,0.0,1.0,80103,0,135,44.9617195,-123.0243776,0,1,8009304001,80417,0,0,7921,0.0,0.0,0,0,,,,0,0,0.0,0.43,0,0.0,0,0.0,0,0,0,0,1,122963.07,1558.57,1,,,93,80093,1,0,13,0,13,0,0,30,300,,0,0,1,0,0,0,0,0,2.822841074,0.085,999999,4.163,1.491,3.024,7.202,7273.468,135,0.0,0.0,0.0,0 +7536,7536,,Block 4014,0,25,PedestrianZones,2300869.278,146666.4358,10,0,0,0.0,0,0,0,,11740,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4014.0,410470000000000.0,1000000US410470003004014,0.0,1.0,80103,0,165,44.9585456,-123.024379,0,1,8009204014,80417,0,0,7922,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,126346.97,1436.52,1,,,92,80092,1,0,17,0,17,0,0,44,300,,0,0,1,0,0,0,0,0,2.900524787,0.275,999999,3.023,0.199,3.769,8.798,7565.523,165,0.0,0.0,0.0,0 +7537,7537,,Block 4009,0,25,PedestrianZones,2300974.987,146898.7532,10,0,0,0.0,0,0,0,,12088,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4009.0,410470000000000.0,1000000US410470003004009,0.0,1.0,80103,0,135,44.960665,-123.0231318,0,1,8009304009,80417,0,0,7923,0.0,0.0,0,0,,,,0,0,0.0,0.59,0,0.0,0,0.0,0,0,0,0,1,130088.45,1455.56,1,,,93,80093,1,0,10,0,10,0,0,17,300,,0,0,1,0,0,0,0,0,2.986417305,0.186,999999,2.076,0.107,3.767,9.353,7314.88,135,0.0,0.0,0.0,0 +7538,7538,,Block 4015,0,25,PedestrianZones,2300773.383,146590.5492,10,0,0,0.0,0,0,0,,26485,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4015.0,410470000000000.0,1000000US410470003004015,0.0,0.97,80103,0,173,44.9578361,-123.0255639,0,1,8009204015,80417,0,0,7924,0.0,0.0,0,0,,,,0,0,0.01,0.39,0,0.0,0,0.0,0,0,0,0,1,285030.86,2489.82,1,,,92,80092,1,1,38,0,37,0,0,94,300,,0,0,1,0,0,0,0,0,6.543402382,0.319,999999,3.455,0.176,4.185,9.463,8267.459,173,0.0,0.0,0.0,0 +7539,7539,,Block 4010,0,25,PedestrianZones,2300970.903,146779.973,10,0,0,0.0,0,0,0,,10884,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,32,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4010.0,410470000000000.0,1000000US410470003004010,0.0,0.5,80103,0,146,44.9595955,-123.0231365,0,3,8009304010,80417,0,0,7925,0.0,0.0,0,0,,,,0,0,0.42,0.42,0,0.0,0,0.0,0,0,0,0,1,117129.81,1372.22,1,,,93,80093,1,11,22,0,11,0,0,26,300,,0,0,1,0,0,0,0,0,2.688928122,0.264,999999,4.43,0.228,3.49,8.402,8212.644,146,0.0,0.0,0.0,0 +7540,7540,,Block 4013,0,25,PedestrianZones,2300965.226,146662.26,10,0,0,0.0,0,0,0,,12276,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4013.0,410470000000000.0,1000000US410470003004013,0.0,1.0,80103,0,156,44.958535,-123.0231619,0,1,8009204013,80417,0,0,7926,0.0,0.0,0,0,,,,0,0,0.0,0.43,0,0.0,0,0.0,0,0,0,0,1,132112.78,1463.93,1,,,92,80092,1,0,16,0,16,0,0,37,300,,0,0,1,0,0,0,0,0,3.032889496,0.254,999999,3.557,0.204,3.95,9.634,8442.349,156,0.0,0.0,0.0,0 +7543,7543,,Block 4021,0,25,PedestrianZones,2300766.55,146384.233,10,0,0,0.0,0,0,0,,14489,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4021.0,410470000000000.0,1000000US410470003004021,0.0,1.0,80103,0,174,44.9559784,-123.0255687,0,1,8009204021,80082,0,0,7929,0.0,0.0,0,0,,,,0,0,0.0,0.42,0,0.0,0,0.0,0,0,0,0,1,155930.31,1598.15,1,,,92,80092,1,0,19,0,19,0,0,45,300,,0,0,1,0,0,0,0,0,3.579664275,0.189,999999,3.137,0.14,4.432,9.444,8052.12,174,0.0,0.0,0.0,0 +7544,7544,,Block 4020,0,25,PedestrianZones,2300725.65,146275.8328,10,0,0,0.0,0,0,0,,9783,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4020.0,410470000000000.0,1000000US410470003004020,0.0,1.0,80103,0,178,44.9549918,-123.0260439,0,1,8009104020,80082,0,0,7930,0.0,0.0,0,0,,,,0,0,0.0,0.5,0,0.0,0,0.0,0,0,0,0,1,105283.52,1306.18,1,,,91,80091,1,0,12,0,12,0,0,24,300,,0,0,1,0,0,0,0,0,2.416974833,0.147,999999,4.355,0.121,4.422,9.652,8964.99,178,0.0,0.0,0.0,0 +7545,7545,,Block 4025,0,25,PedestrianZones,2300822.805,146239.6522,10,0,0,0.0,0,0,0,,9968,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4025.0,410470000000000.0,1000000US410470003004025,0.0,0.77,80103,0,173,44.9546937,-123.0247988,0,1,8009104025,80082,0,0,7931,0.0,0.0,0,0,,,,0,0,0.13,0.43,0,0.0,0,0.0,0,0,0,0,1,107276.57,1309.22,1,,,91,80091,1,3,13,0,10,0,0,23,300,,0,0,1,0,0,0,0,0,2.462728938,0.085,999999,4.449,0.168,4.286,9.463,8903.53,173,0.0,0.0,0.0,0 +7546,7546,,Block 4026,0,25,PedestrianZones,2300776.319,146162.1253,10,0,0,0.0,0,0,0,,6640,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4026.0,410470000000000.0,1000000US410470003004026,0.0,0.33,80103,0,178,44.9539833,-123.025357,0,3,8009104026,80082,0,0,7932,0.0,0.0,0,0,,,,0,0,1.43,0.71,0,0.0,0,0.0,0,0,0,0,1,71454.86,1184.77,1,,,91,80091,1,10,15,0,5,0,0,7,300,,0,0,1,0,0,0,0,0,1.640376428,0.18,999999,4.997,0.147,4.367,9.452,9247.701,178,0.0,0.0,0.0,0 +7547,7547,,Block 4033,0,25,PedestrianZones,2300747.414,146051.5773,10,0,0,0.0,0,0,0,,10991,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,45,0,0,0,160,0,9999,0,0,0,0,0,0,0,3,4033.0,410470000000000.0,1000000US410470003004033,0.0,0.02,80103,0,179,44.9529808,-123.0256793,0,3,8009004033,80082,0,0,7933,0.0,0.0,0,0,,,,0,0,20.0,0.5,0,0.0,0,0.0,0,0,0,0,1,118281.41,1354.29,1,,,90,80090,1,40,41,0,1,0,0,2,300,,0,0,1,0,0,0,0,0,2.715365218,0.128,999999,4.955,0.151,4.55,9.935,9529.892,179,0.0,0.0,0.0,0 +7548,7548,,Block 2004,0,25,PedestrianZones,2300894.642,146231.5057,10,0,0,0.0,0,0,0,,2955,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2004.0,410470000000000.0,1000000US410470003002004,0.0,0.0,80103,0,169,44.9546406,-123.0238855,0,1,8009402004,80082,0,0,7934,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,31798.27,896.58,1,,,94,80094,1,0,0,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,0.729987115,0.085,999999,4.449,0.168,4.286,9.463,8903.53,169,0.0,0.0,0.0,0 +7549,7549,,Block 4034,0,25,PedestrianZones,2300805.06,146121.2105,10,0,0,0.0,0,0,0,,4041,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4034.0,410470000000000.0,1000000US410470003004034,0.0,0.33,80103,0,177,44.9536233,-123.0249767,0,3,8009004034,80082,0,0,7935,0.0,0.0,0,0,,,,0,0,1.5,0.75,0,0.0,0,0.0,0,0,0,0,1,43487.84,1018.09,1,,,90,80090,1,6,9,0,3,0,0,4,300,,0,0,1,0,0,0,0,0,0.998342495,0.083,999999,5.011,0.151,4.502,9.696,9412.812,177,0.0,0.0,0.0,0 +7550,7550,,Block 2007,0,25,PedestrianZones,2300898.032,146102.4038,10,0,0,0.0,0,0,0,,13749,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,11,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2007.0,410470000000000.0,1000000US410470003002007,0.0,0.14,80103,0,172,44.9534803,-123.0237915,0,3,8009402007,80082,0,0,7936,0.0,0.0,0,0,,,,0,0,3.0,0.5,0,0.0,0,0.0,0,0,0,0,1,147965.19,1556.31,1,,,94,80094,1,12,14,0,2,0,0,4,300,,0,0,1,0,0,0,0,0,3.396810289,0.109,999999,4.623,0.193,4.492,9.914,9303.608,172,0.0,0.0,0.0,0 +7551,7551,,Block 2008,0,25,PedestrianZones,2300860.529,146007.2226,10,0,0,0.0,0,0,0,,14090,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2008.0,410470000000000.0,1000000US410470003002008,0.0,1.0,80103,0,170,44.9526136,-123.0242289,0,1,8009402008,80082,0,0,7937,0.0,0.0,0,0,,,,0,0,0.0,0.49,0,0.0,0,0.0,0,0,0,0,1,151628.62,1572.06,1,,,94,80094,1,0,18,0,18,0,0,37,300,,0,0,1,0,0,0,0,0,3.480911011,0.044,999999,5.039,0.168,4.591,9.886,9552.353,170,0.0,0.0,0.0,0 +7552,7552,,Block 4022,0,25,PedestrianZones,2300864.669,146523.1383,10,0,0,0.0,0,0,0,,14952,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4022.0,410470000000000.0,1000000US410470003004022,0.0,0.91,80103,0,168,44.9572554,-123.0243807,0,1,8009204022,80417,0,0,7938,0.0,0.0,0,0,,,,0,0,0.04,0.42,0,0.0,0,0.0,0,0,0,0,1,160908.48,1664.62,1,,,92,80092,1,2,22,0,20,0,0,48,300,,0,0,1,0,0,0,0,0,3.693947142,0.215,999999,4.003,0.217,4.148,9.131,8406.063,168,0.0,0.0,0.0,0 +7555,7555,,Block 1020,0,25,PedestrianZones,2301006.37,146266.1668,10,0,0,0.0,0,0,0,,5000,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1020.0,410470000000000.0,1000000US410470003001020,0.0,0.0,80103,0,159,44.9549838,-123.0224839,0,3,8009701020,80082,0,0,7941,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,53811.61,1143.53,1,,,97,80097,1,24,24,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,1.235343397,0.067,999999,4.399,0.188,4.242,9.501,8895.757,159,0.0,0.0,0.0,0 +7556,7556,,Block 2005,0,25,PedestrianZones,2301050.048,146124.4378,10,0,0,0.0,0,0,0,,6691,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2005.0,410470000000000.0,1000000US410470003002005,0.0,0.86,80103,0,158,44.9537212,-123.0218745,0,1,8009502005,80082,0,0,7942,0.0,0.0,0,0,,,,0,0,0.08,0.5,0,0.0,0,0.0,0,0,0,0,1,72005.2,1185.57,1,,,95,80095,1,1,7,0,6,0,0,12,300,,0,0,1,0,0,0,0,0,1.653010413,0.097,999999,5.026,0.203,4.064,9.009,8982.032,158,0.0,0.0,0.0,0 +7625,7625,,Block 2012,0,25,PedestrianZones,2309542.392,139172.9291,10,0,0,0.0,0,0,0,,675033,0,2,410470000000000.0,0,0,Outside CL,0,47,,0,0,4,1,1,9999,0,80295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,85,0,3,0,0,0,9999,0,0,0,0,0,0,0,4,22012.0,410470000000000.0,1000000US410470027022012,0.0,0.29,80309,0,18,44.8935247,-122.9116621,0,3,8009622012,80299,0,0,9213,0.0,0.0,0,0,,,,0,0,0.91,0.37,0,0.0,0,0.0,0,0,0,0,1,7264626.63,11554.88,1,,,96,80096,1,96,135,0,39,0,0,105,2702,,0,0,0,0,0,0,0,0,166.7727321,999999.0,999999,0.6,0.0,0.234,0.63,786.699,18,0.0,0.0,0.0,0 +7635,7635,,Block 3002,0,25,PedestrianZones,2300273.086,147008.8761,10,0,0,0.0,0,0,0,,18499,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,5,0,0,0,0,2,0,5,0,0,0,0,0,16,40,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3002.0,410470000000000.0,1000000US410470003003002,0.0,0.09,80103,0,113,44.961458,-123.032068,0,3,8008803002,80417,0,0,9236,0.0,0.0,0,0,,,,0,0,7.5,0.75,0,0.0,0,0.0,0,0,0,0,1,199078.36,1851.42,1,,,88,80088,1,30,33,0,3,0,0,4,300,,0,0,1,0,0,0,0,0,4.570206158,0.189,999999,4.893,0.786,2.015,4.277,5868.721,113,0.0,0.0,0.0,0 +7638,7638,,Block 3010,0,25,PedestrianZones,2300162.063,146867.5405,10,0,0,0.0,0,0,0,,12363,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,32,0,7,0,0,0,9999,0,0,0,0,0,0,0,3,3010.0,410470000000000.0,1000000US410470003003010,0.0,0.0,80103,0,106,44.9601554,-123.0334185,0,3,8008603010,80417,0,0,9239,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,133051.96,1463.18,1,,,86,80086,1,30,30,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,3.054449922,0.307,999999,4.498,0.125,2.073,3.894,5371.404,106,0.0,0.0,0.0,0 +7639,7639,,Block 3018,0,25,PedestrianZones,2300158.045,146748.6053,10,0,0,0.0,0,0,0,,13908,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,2,0,0,0,0,0,61,0,0,0,0,0,0,44,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3018.0,410470000000000.0,1000000US410470003003018,0.0,0.0,80103,0,104,44.9590844,-123.0334221,0,3,8008603018,80417,0,0,9240,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,149672.21,1548.23,1,,,86,80086,1,48,48,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,3.435998035,0.238,999999,4.848,0.131,2.02,3.488,5335.009,104,0.0,0.0,0.0,0 +7640,7640,,Block 3011,0,25,PedestrianZones,2300268.979,146863.4995,10,0,0,0.0,0,0,0,,11587,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3011.0,410470000000000.0,1000000US410470003003011,0.0,0.9,80103,0,120,44.9601492,-123.0320623,0,1,8008803011,80417,0,0,9241,0.0,0.0,0,0,,,,0,0,0.1,0.9,0,0.0,0,0.0,0,0,0,0,1,124695.93,1412.45,1,,,88,80088,1,1,10,0,9,0,0,10,300,,0,0,1,0,0,0,0,0,2.862622239,0.239,999999,4.651,0.219,2.272,4.613,5928.965,120,0.0,0.0,0.0,0 +7641,7641,,Block 3016,0,25,PedestrianZones,2300289.897,146743.1176,10,0,0,0.0,0,0,0,,6571,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3016.0,410470000000000.0,1000000US410470003003016,0.0,0.58,80103,0,124,44.9590722,-123.0317495,0,2,8008803016,80417,0,0,9242,0.0,0.0,0,0,,,,0,0,0.63,0.88,0,0.0,0,0.0,0,0,0,0,1,70719.71,1169.28,1,,,88,80088,1,5,12,0,7,0,0,8,300,,0,0,1,0,0,0,0,0,1.623499814,0.172,999999,4.28,0.128,2.268,4.159,5400.784,124,0.0,0.0,0.0,0 +7642,7642,,Block 3001,0,25,PedestrianZones,2300376.419,147006.0482,10,0,0,0.0,0,0,0,,18288,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,479,0,4,0,0,0,0,0,0,222,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3001.0,410470000000000.0,1000000US410470003003001,0.0,0.8,80103,0,120,44.9614617,-123.0307578,0,1,8008803001,80417,0,0,9243,0.0,0.0,0,0,,,,0,0,0.14,0.57,0,0.0,0,0.0,0,0,0,0,1,196815.76,1838.67,1,,,88,80088,1,5,25,0,20,0,0,35,300,,0,0,1,0,0,0,0,0,4.518264048,0.189,999999,4.893,0.786,2.015,4.277,5868.721,120,0.0,0.0,0.0,0 +7645,7645,,Block 3015,0,25,PedestrianZones,2300367.679,146740.4074,10,0,0,0.0,0,0,0,,13214,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3015.0,410470000000000.0,1000000US410470003003015,0.0,1.0,80103,0,140,44.9590698,-123.030763,0,1,8008803015,80417,0,0,9246,0.0,0.0,0,0,,,,0,0,0.0,0.56,0,0.0,0,0.0,0,0,0,0,1,142210.13,1516.71,1,,,88,80088,1,0,18,0,18,0,0,32,300,,0,0,1,0,0,0,0,0,3.264692418,0.106,999999,4.018,0.131,2.53,4.952,5740.83,140,0.0,0.0,0.0,0 +7646,7646,,Block 3014,0,25,PedestrianZones,2300477.353,146737.318,10,0,0,1.64,0,0,0,,14938,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,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,9999,0,0,0,0,0,0,0,3,3014.0,410470000000000.0,1000000US410470003003014,4.26,0.88,80103,0,149,44.9590729,-123.0293724,0,1,8008803014,80417,0,0,9247,0.0,1.64,0,3,NEIGHBORHOOD PARK,DEVELOPED,,0,0,0.13,0.88,0,0.0,0,0.0,0,0,0,0,1,160754.25,1605.78,1,,,88,80088,1,1,8,0,7,0,0,8,300,,0,0,1,0,0,0,0,0,3.690406519,0.0,999999,3.988,0.142,3.35,6.919,6980.754,149,0.0,0.0,0.0,0 +7647,7647,,Block 4005,0,25,PedestrianZones,2300596.605,146931.7605,10,0,0,0.0,0,0,0,,8039,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4005.0,410470000000000.0,1000000US410470003004005,0.0,0.0,80103,0,141,44.9608555,-123.0279387,0,1,8009304005,80417,0,0,9248,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,86518.69,1278.16,1,,,93,80093,1,0,0,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,1.986194099,0.072,999999,3.193,0.115,2.782,6.111,5954.44,141,0.0,0.0,0.0,0 +7648,7648,,Block 4006,0,25,PedestrianZones,2300686.35,146907.8961,10,0,0,0.0,0,0,0,,12284,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,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,9999,0,0,0,0,0,0,0,3,4006.0,410470000000000.0,1000000US410470003004006,0.0,0.91,80103,0,146,44.9606661,-123.0267922,0,1,8009304006,80417,0,0,9249,0.0,0.0,0,0,,,,0,0,0.05,0.45,0,0.0,0,0.0,0,0,0,0,1,132202.73,1448.3,1,,,93,80093,1,1,11,0,10,0,0,22,300,,0,0,1,0,0,0,0,0,3.034954496,0.125,999999,4.277,1.523,3.138,7.276,7394.14,146,0.0,0.0,0.0,0 +7649,7649,,Block 3019,0,25,PedestrianZones,2300154.05,146628.8348,10,0,0,0.0,0,0,0,,12139,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,17,0,0,0,9999,0,0,0,0,0,0,0,3,3019.0,410470000000000.0,1000000US410470003003019,0.0,0.0,80103,0,112,44.958006,-123.0334251,0,3,8008603019,80417,0,0,9250,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,130638.92,1447.52,1,,,86,80086,1,22,22,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,2.999054242,0.202,999999,4.627,0.124,2.127,3.704,5331.74,112,0.0,0.0,0.0,0 +7650,7650,,Block 3025,0,25,PedestrianZones,2300256.005,146516.8496,10,0,0,0.0,0,0,0,,10627,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,8,0,11,0,0,0,9999,0,0,0,0,0,0,0,3,3025.0,410470000000000.0,1000000US410470003003025,0.0,0.13,80103,0,132,44.9570274,-123.032089,0,3,8008803025,80417,0,0,9251,0.0,0.0,0,0,,,,0,0,6.5,1.0,0,0.0,0,0.0,0,0,0,0,1,114363.07,1359.03,1,,,88,80088,1,13,15,0,2,0,0,2,300,,0,0,1,0,0,0,0,0,2.6254124,0.268,999999,5.093,0.121,2.392,4.204,5950.595,132,0.0,0.0,0.0,0 +7651,7651,,Block 3021,0,25,PedestrianZones,2300362.774,146621.7476,10,0,0,0.0,0,0,0,,11403,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3021.0,410470000000000.0,1000000US410470003003021,0.0,1.0,80103,0,142,44.9580011,-123.0307781,0,1,8008803021,80417,0,0,9252,0.0,0.0,0,0,,,,0,0,0.0,0.82,0,0.0,0,0.0,0,0,0,0,1,122711.61,1401.74,1,,,88,80088,1,0,14,0,14,0,0,17,300,,0,0,1,0,0,0,0,0,2.817068481,0.071,999999,3.92,0.142,2.591,4.919,5656.847,142,0.0,0.0,0.0,0 +7652,7652,,Block 3027,0,25,PedestrianZones,2300250.525,146439.3625,10,0,0,0.0,0,0,0,,5037,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3027.0,410470000000000.0,1000000US410470003003027,0.0,0.0,80103,0,137,44.9563289,-123.0321277,0,3,8008903027,80417,0,0,9253,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,54208.73,997.26,1,,,89,80089,2,33,33,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,1.24446004,0.275,999999,5.093,0.121,2.392,4.204,5950.595,137,0.0,0.0,0.0,0 +7653,7653,,Block 3037,0,25,PedestrianZones,2300234.789,146145.9365,10,0,0,0.0,0,0,0,,10494,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3037.0,410470000000000.0,1000000US410470003003037,0.0,0.72,80103,0,136,44.9536851,-123.0322105,0,1,8008903037,80068,0,0,9254,0.0,0.0,0,0,,,,0,0,0.27,0.7,0,0.0,0,0.0,0,0,0,0,1,112932.58,1343.87,1,,,89,80089,2,8,29,0,21,0,0,30,300,,0,0,1,0,0,0,0,0,2.592573083,0.123,999999,5.838,0.219,2.718,5.279,7114.746,136,0.0,0.0,0.0,0 +7654,7654,,Block 3028,0,25,PedestrianZones,2300346.476,146420.467,10,0,0,0.0,0,0,0,,8520,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3028.0,410470000000000.0,1000000US410470003003028,0.0,0.0,80103,0,151,44.956186,-123.0309046,0,1,8008903028,80417,0,0,9255,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,91694.69,1222.77,1,,,89,80089,2,0,0,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,2.105018545,0.275,999999,5.093,0.121,2.392,4.204,5950.595,151,0.0,0.0,0.0,0 +7655,7655,,Block 3029,0,25,PedestrianZones,2300452.238,146405.9709,10,0,0,0.0,0,0,0,,13886,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3029.0,410470000000000.0,1000000US410470003003029,0.0,0.67,80103,0,159,44.9560854,-123.0295591,0,1,8008903029,80417,0,0,9256,0.0,0.0,0,0,,,,0,0,0.29,0.58,0,0.0,0,0.0,0,0,0,0,1,149436.9,1712.46,1,,,89,80089,2,9,27,0,18,0,0,31,300,,0,0,1,0,0,0,0,0,3.430596029,0.0,999999,6.84,0.213,3.92,7.803,9371.405,159,0.0,0.0,0.0,0 +7656,7656,,Block 3043,0,25,PedestrianZones,2300161.696,145956.0918,10,0,0,0.0,0,0,0,,9945,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,8,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3043.0,410470000000000.0,1000000US410470003003043,0.0,0.0,80103,0,133,44.9519569,-123.033061,0,3,8008903043,80068,0,0,9257,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,107023.17,1308.31,1,,,89,80089,2,9,9,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,2.456911631,0.123,999999,8.941,0.501,2.905,6.122,9640.063,133,0.0,0.0,0.0,0 +7657,7657,,Block 3041,0,25,PedestrianZones,2300293.514,146013.0001,10,0,0,0.0,0,0,0,,10753,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,0,15,0,0,23,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3041.0,410470000000000.0,1000000US410470003003041,0.0,0.22,80103,0,147,44.952506,-123.0314138,0,3,8008903041,80068,0,0,9258,0.0,0.0,0,0,,,,0,0,3.25,0.92,0,0.0,0,0.0,4,0,0,0,1,115718.35,1361.19,1,,,89,80089,2,39,50,0,11,0,0,12,300,,0,0,1,0,0,0,0,0,2.656525501,0.061,999999,7.156,0.231,3.465,7.254,9222.487,147,0.0,0.0,0.0,0 +7658,7658,,Block 3022,0,25,PedestrianZones,2300473.259,146620.9488,10,0,0,0.0,0,0,0,,12269,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,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,9999,0,0,0,0,0,0,0,3,3022.0,410470000000000.0,1000000US410470003003022,0.0,0.89,80103,0,153,44.958025,-123.0293781,0,1,8008803022,80417,0,0,9259,0.0,0.0,0,0,,,,0,0,0.09,0.77,0,0.0,0,0.0,0,0,0,0,1,132035.15,1458.53,1,,,88,80088,1,2,19,0,17,0,0,22,300,,0,0,1,0,0,0,0,0,3.031107278,0.033,999999,4.355,0.157,3.035,5.903,6565.588,153,0.0,0.0,0.0,0 +7659,7659,,Block 3023,0,25,PedestrianZones,2300465.779,146517.7733,10,0,0,0.0,0,0,0,,11583,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3023.0,410470000000000.0,1000000US410470003003023,0.0,1.0,80103,0,160,44.9570949,-123.0294319,0,1,8008803023,80417,0,0,9260,0.0,0.0,0,0,,,,0,0,0.0,0.58,0,0.0,0,0.0,0,0,0,0,1,124652.81,1409.83,1,,,88,80088,1,0,31,0,31,0,0,53,300,,0,0,1,0,0,0,0,0,2.861632116,0.054,999999,5.132,0.206,3.841,7.504,8087.259,160,0.0,0.0,0.0,0 +7660,7660,,Block 4017,0,25,PedestrianZones,2300599.231,146749.3811,10,0,0,0.0,0,0,0,,37621,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,1,0,0,0,1,54,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,263,0,9999,0,0,0,0,0,0,0,3,4017.0,410470000000000.0,1000000US410470003004017,0.0,0.16,80103,0,158,44.9592157,-123.0278331,0,3,8009204017,80417,0,0,9261,0.0,0.0,0,0,,,,0,0,2.3,0.45,0,0.0,0,0.0,0,0,0,0,1,404872.37,3346.24,1,,,92,80092,1,46,55,0,9,0,0,20,300,,0,0,1,0,0,0,0,0,9.29458239,0.045,999999,4.137,0.138,3.105,6.078,6537.878,158,0.0,0.0,0.0,0 +7661,7661,,Block 4018,0,25,PedestrianZones,2300537.843,146352.4627,10,0,0,0.0,0,0,0,,10935,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4018.0,410470000000000.0,1000000US410470003004018,0.0,1.0,80103,0,167,44.9556282,-123.0284534,0,1,8009104018,80082,0,0,9262,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,117679.36,1372.38,1,,,91,80091,1,0,35,0,35,0,0,86,300,,0,0,1,0,0,0,0,0,2.701543907,0.067,999999,3.652,0.156,4.237,8.823,7984.003,167,0.0,0.0,0.0,0 +7662,7662,,Block 4030,0,25,PedestrianZones,2300465.651,146164.7784,10,0,0,0.0,0,0,0,,10698,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,20,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4030.0,410470000000000.0,1000000US410470003004030,0.0,0.2,80103,0,170,44.9539197,-123.0292935,0,3,8009104030,80082,0,0,9263,0.0,0.0,0,0,,,,0,0,2.67,0.67,0,0.0,0,0.0,0,0,0,0,1,115127.49,1357.15,1,,,91,80091,1,16,20,0,4,0,0,6,300,,0,0,1,0,0,0,0,0,2.642961154,0.125,999999,6.014,0.192,3.934,8.368,9204.469,170,0.0,0.0,0.0,0 +7663,7663,,Block 4019,0,25,PedestrianZones,2300632.838,146314.0214,10,0,0,0.0,0,0,0,,9834,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4019.0,410470000000000.0,1000000US410470003004019,0.0,1.0,80103,0,176,44.9553092,-123.0272347,0,1,8009104019,80082,0,0,9264,0.0,0.0,0,0,,,,0,0,0.0,0.54,0,0.0,0,0.0,0,0,0,0,1,105830.31,1301.64,1,,,91,80091,1,0,7,0,7,0,0,13,300,,0,0,1,0,0,0,0,0,2.429527498,0.128,999999,4.697,0.162,4.262,9.012,8773.359,176,0.0,0.0,0.0,0 +7664,7664,,Block 4027,0,25,PedestrianZones,2300690.249,146183.705,10,0,0,0.0,0,0,0,,10609,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4027.0,410470000000000.0,1000000US410470003004027,0.0,1.0,80103,0,184,44.9541532,-123.0264558,0,1,8009104027,80082,0,0,9265,0.0,0.0,0,0,,,,0,0,0.0,0.55,0,0.0,0,0.0,0,0,0,0,1,114174.5,1352.85,1,,,91,80091,1,0,11,0,11,0,0,20,300,,0,0,1,0,0,0,0,0,2.621083448,0.18,999999,4.997,0.147,4.367,9.452,9247.701,184,0.0,0.0,0.0,0 +7665,7665,,Block 4032,0,25,PedestrianZones,2300651.444,146090.6503,10,0,0,0.0,0,0,0,,10035,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4032.0,410470000000000.0,1000000US410470003004032,0.0,0.63,80103,0,179,44.9533052,-123.0269105,0,1,8009104032,80082,0,0,9266,0.0,0.0,0,0,,,,0,0,0.43,0.71,0,0.0,0,0.0,0,0,0,0,1,107998.26,1347.27,1,,,91,80091,1,3,8,0,5,0,0,7,300,,0,0,1,0,0,0,0,0,2.479296774,0.161,999999,6.442,0.144,4.563,10.069,10567.467,179,0.0,0.0,0.0,0 +7666,7666,,Block 4041,0,25,PedestrianZones,2300487.308,145938.4093,10,0,0,0.0,0,0,0,,10001,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,97,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4041.0,410470000000000.0,1000000US410470003004041,0.0,0.0,80103,0,159,44.9518896,-123.0289293,0,3,8009004041,80082,0,0,9267,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,107624.68,1313.0,1,,,90,80090,1,90,90,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,2.470720502,0.183,999999,6.34,0.186,4.031,8.56,9535.61,159,0.0,0.0,0.0,0 +7670,7670,,Block 4002,0,25,PedestrianZones,2300786.249,147025.3216,10,0,0,0.0,0,0,0,,10432,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4002.0,410470000000000.0,1000000US410470003004002,0.0,1.0,80103,0,136,44.9617504,-123.0255731,0,1,8009304002,80417,0,0,9271,0.0,0.0,0,0,,,,0,0,0.0,0.44,0,0.0,0,0.0,0,0,0,0,1,112269.9,1344.16,1,,,93,80093,1,0,12,0,12,0,0,27,300,,0,0,1,0,0,0,0,0,2.577359958,0.0,999999,4.174,1.376,2.565,6.23,6658.009,136,0.0,0.0,0.0,0 +7671,7671,,Block 4012,0,25,PedestrianZones,2300776.588,146785.4159,10,0,0,0.0,0,0,0,,10511,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4012.0,410470000000000.0,1000000US410470003004012,0.0,0.81,80103,0,164,44.9595898,-123.0256004,0,1,8009304012,80417,0,0,9272,0.0,0.0,0,0,,,,0,0,0.1,0.4,0,0.0,0,0.0,0,0,0,0,1,113121.74,1345.2,1,,,93,80093,1,4,21,0,17,0,0,42,300,,0,0,1,0,0,0,0,0,2.596915522,0.222,999999,3.349,0.163,4.047,8.971,7884.955,164,0.0,0.0,0.0,0 +7673,7673,,Block 4000,0,25,PedestrianZones,2300980.7,147017.8738,10,0,0,0.0,0,0,0,,11108,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4000.0,410470000000000.0,1000000US410470003004000,0.0,1.0,80103,0,128,44.9617381,-123.0231066,0,1,8009304000,80417,0,0,9274,0.0,0.0,0,0,,,,0,0,0.0,0.75,0,0.0,0,0.0,0,0,0,0,1,119538.91,1380.01,1,,,93,80093,1,0,3,0,3,0,0,4,300,,0,0,1,0,0,0,0,0,2.744233434,0.07,999999,3.48,1.504,2.852,7.048,6738.379,128,0.0,0.0,0.0,0 +7721,7721,,Block 3003,0,25,PedestrianZones,2301752.22,144873.3939,10,0,0,0.0,0,0,0,,12588,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3003.0,410470000000000.0,1000000US410470006003003,0.0,1.0,80103,0,136,44.942665,-123.0124866,0,1,8010503003,80082,0,0,9332,0.0,0.0,0,0,,,,0,0,0.0,0.65,0,0.0,0,0.0,0,0,0,0,1,135464.53,1717.13,1,,,105,80105,1,0,13,0,13,0,0,20,600,,0,0,1,0,0,0,0,0,3.10983496,0.145,999999,2.655,0.087,3.944,8.635,7225.2,136,0.0,0.0,0.0,0 +7740,7740,,Block 2003,0,25,PedestrianZones,2300946.051,146187.0141,10,0,0,0.0,0,0,0,,11112,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,7,11,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2003.0,410470000000000.0,1000000US410470003002003,0.0,0.72,80103,0,162,44.9542549,-123.0232167,0,1,8009402003,80082,0,0,9407,0.0,0.0,0,0,,,,0,0,0.18,0.46,0,0.0,0,0.0,0,0,0,0,1,119584.53,1424.45,1,,,94,80094,1,5,18,0,13,0,0,28,300,,0,0,1,0,0,0,0,0,2.745280516,0.109,999999,4.623,0.193,4.492,9.914,9303.608,162,0.0,0.0,0.0,0 +7744,7744,,Block 4004,0,25,PedestrianZones,2300595.466,147031.8029,10,0,0,0.0,0,0,0,,10809,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4004.0,410470000000000.0,1000000US410470003004004,0.0,0.53,80103,0,127,44.961755,-123.0279928,0,2,8009304004,80417,0,0,9420,0.0,0.0,0,0,,,,0,0,0.45,0.5,0,0.0,0,0.0,0,0,0,0,1,116318.83,1368.07,1,,,93,80093,1,9,19,0,10,0,0,20,300,,0,0,1,0,0,0,0,0,2.670310571,0.0,999999,4.658,1.509,2.462,5.563,6541.86,127,0.0,0.0,0.0,0 +7745,7745,,Block 3040,0,25,PedestrianZones,2300197.863,146050.9019,10,0,0,0.0,0,0,0,,10224,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3040.0,410470000000000.0,1000000US410470003003040,0.0,0.95,80103,0,135,44.9528199,-123.0326405,0,1,8008903040,80068,0,0,9421,0.0,0.0,0,0,,,,0,0,0.05,0.82,0,0.0,0,0.0,0,0,0,0,1,110027.49,1328.08,1,,,89,80089,2,1,19,0,18,0,0,22,300,,0,0,1,0,0,0,0,0,2.525881323,0.185,999999,8.132,0.512,2.854,5.637,8812.038,135,0.0,0.0,0.0,0 +7746,7746,,Block 4038,0,25,PedestrianZones,2300522.445,146032.8247,10,0,0,0.0,0,0,0,,9940,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4038.0,410470000000000.0,1000000US410470003004038,0.0,0.78,80103,0,165,44.9527488,-123.0285217,0,1,8009104038,80082,0,0,9422,0.0,0.0,0,0,,,,0,0,0.17,0.58,0,0.0,0,0.0,0,0,0,0,1,106967.29,1308.18,1,,,91,80091,1,2,9,0,7,0,0,12,300,,0,0,1,0,0,0,0,0,2.455628807,0.124,999999,6.016,0.205,4.157,9.114,9682.938,165,0.0,0.0,0.0,0 +7786,7786,,Block 2022,0,25,PedestrianZones,2301900.766,145071.9335,10,0,0,0.0,0,0,0,,12463,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2022.0,410470000000000.0,1000000US410470006002022,0.0,1.0,80103,0,145,44.9444924,-123.0106834,0,1,8010002022,80082,0,0,9510,0.0,0.0,0,0,,,,0,0,0.0,0.45,0,0.0,0,0.0,0,0,0,0,1,134124.73,1466.85,1,,,100,80100,1,0,13,0,13,0,0,29,600,,0,0,1,0,0,0,0,0,3.07907748,0.257,999999,2.605,0.136,3.505,7.961,6762.494,145,0.0,0.0,0.0,0 +7926,7926,,Block 1005,0,25,PedestrianZones,2299677.355,145908.738,10,0,0,0.0,0,0,0,,0,70521,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1005.0,410470000000000.0,1000000US410470002001005,0.0,0.0,80103,0,102,44.9513942,-123.0391773,0,1,8008701005,80068,0,0,15098,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,1,1,758930.91,7339.59,1,,,87,80087,1,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,17.42264104,0.253,999999,9.755,0.626,1.991,4.001,8803.519,102,0.0,0.0,0.0,0 +7927,7927,,Block 3009,0,25,PedestrianZones,2299836.567,146867.5151,10,0,0,0.0,0,0,0,,64078,113917,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3009.0,410470000000000.0,1000000US410470003003009,0.0,0.0,80103,0,60,44.9620172,-123.0371696,0,1,8008703009,80417,0,0,15099,0.0,11.18,0,1,SPECIAL USE FACILITY,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,1,1,1915536.78,13439.06,1,,,87,80087,1,0,0,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,43.97463472,0.362,999999,5.032,0.122,1.575,2.601,4885.171,60,0.0,0.0,0.0,0 +7929,7929,,Block 3005,0,25,PedestrianZones,2300049.591,146632.7057,10,0,0,0.0,0,0,0,,11136,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,16,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3005.0,410470000000000.0,1000000US410470003003005,0.0,0.25,80103,0,92,44.9580113,-123.03475,0,3,8008603005,80417,0,0,15101,0.0,0.0,0,0,,,,0,0,2.57,0.86,0,0.0,0,0.0,0,0,0,0,1,119846.23,1386.62,1,,,86,80086,1,18,24,0,6,0,0,7,300,,0,0,1,0,0,0,0,0,2.75128849,0.269,999999,4.44,0.106,1.953,3.361,4992.118,92,0.0,0.0,0.0,0 +7959,7959,,Block 6013,0,25,PedestrianZones,2300914.979,144356.842,10,0,0,0.0,0,0,0,,13098,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6013.0,410470000000000.0,1000000US410470009006013,0.0,0.97,80103,0,149,44.9377839,-123.0228861,0,1,8010606013,80068,0,0,15134,0.0,0.0,0,0,,,,0,0,0.02,0.53,0,0.0,0,0.0,11,0,0,0,1,140957.62,1514.2,1,,,106,80106,1,1,30,0,29,0,0,55,900,,0,0,1,0,0,0,0,0,3.235938811,0.218,999999,22.417,0.487,4.102,7.655,19245.713,149,0.0,0.0,0.0,0 +7960,7960,,Block 6012,0,25,PedestrianZones,2301071.655,144293.1313,10,0,0,0.0,0,0,0,,31234,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,41,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6012.0,410470000000000.0,1000000US410470009006012,0.0,0.59,80103,0,162,44.9372548,-123.0208767,0,2,8010606012,80082,0,0,15135,0.0,0.0,0,0,,,,0,0,0.35,0.49,0,0.0,0,0.0,47,0,0,0,1,336137.99,2420.19,1,,,106,80106,1,29,70,0,41,0,0,84,900,,0,0,1,0,0,0,0,0,7.716659629,0.141,999999,6.757,0.115,5.361,10.518,11055.895,162,0.0,0.0,0.0,0 +7961,7961,,Block 6005,0,25,PedestrianZones,2301127.82,144467.4906,10,0,0,0.0,0,0,0,,29721,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6005.0,410470000000000.0,1000000US410470009006005,0.0,0.87,80103,0,160,44.938839,-123.0202343,0,1,8010606005,80082,0,0,15136,0.0,0.0,0,0,,,,0,0,0.09,0.59,0,0.0,0,0.0,0,0,0,0,1,319856.68,2895.68,1,,,106,80106,1,4,30,0,26,0,0,44,900,,0,0,1,0,0,0,0,0,7.342892524,0.085,999999,7.878,0.529,4.808,9.176,10914.675,160,0.0,0.0,0.0,0 +7965,7965,,Block 6011,0,25,PedestrianZones,2301237.611,144229.2765,10,0,0,0.0,0,0,0,,14853,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6011.0,410470000000000.0,1000000US410470009006011,0.0,0.95,80103,0,167,44.936727,-123.0187498,0,1,8010806011,80082,0,0,15140,0.0,0.0,0,0,,,,0,0,0.03,0.61,0,0.0,0,0.0,0,0,0,0,1,159853.81,1602.75,1,,,108,80108,1,1,20,0,19,0,0,31,900,,0,0,1,0,0,0,0,0,3.669735352,0.211,999999,4.686,0.126,5.253,10.52,9731.41,167,0.0,0.0,0.0,0 +7990,7990,,Block 2005,0,25,PedestrianZones,2301453.439,145498.8119,10,0,0,0.0,0,0,0,,28277,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,2005.0,410470000000000.0,1000000US410470006002005,0.0,0.59,80103,0,142,44.9482069,-123.0165175,0,2,8010202005,80082,0,0,15166,0.0,0.0,0,0,,,,0,0,0.31,0.45,0,0.0,0,0.0,0,0,0,0,1,304315.81,2297.32,1,,,102,80102,1,9,22,0,13,0,0,29,600,,0,0,1,0,0,0,0,0,6.986123622,0.067,999999,1.564,0.163,4.615,10.421,7670.173,142,0.0,0.0,0.0,0 +7991,7991,,Block 1031,0,25,PedestrianZones,2301571.599,145641.5303,10,0,0,0.0,0,0,0,,49672,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,21,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1031.0,410470000000000.0,1000000US410470006001031,0.0,0.73,80103,0,137,44.9495238,-123.0150771,0,1,8009801031,80082,0,0,15167,0.0,0.0,0,0,,,,0,0,0.16,0.43,0,0.0,0,0.0,0,0,0,0,1,534565.86,3046.71,1,,,98,80098,1,28,102,0,74,0,0,174,600,,0,0,1,0,0,0,0,0,12.27193258,0.133,999999,1.863,0.242,4.608,10.439,7873.571,137,0.0,0.0,0.0,0 +7993,7993,,Block 6027,0,25,PedestrianZones,2301444.357,144007.5705,10,0,0,0.0,0,0,0,,23329,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80119,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,39,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6027.0,410470000000000.0,1000000US410470009006027,0.0,0.21,80103,0,156,44.9347908,-123.0160441,0,3,8010806027,80082,0,0,15169,0.0,0.0,0,0,,,,0,0,2.38,0.63,0,0.0,0,0.0,0,0,0,0,1,251063.78,2071.84,1,,,108,80108,1,38,48,0,10,0,0,16,900,,0,0,1,0,0,0,0,0,5.763626237,0.148,999999,3.401,0.102,4.838,10.403,8835.005,156,0.0,0.0,0.0,0 +8293,8293,,Block 2005,0,25,PedestrianZones,2299651.488,145423.0033,10,0,0,0.0,0,0,0,,8282,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,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,9999,0,0,0,0,0,0,0,1,2005.0,410470000000000.0,1000000US410470002002005,0.0,0.0,80103,0,111,44.9470177,-123.0393116,0,3,8006102005,80068,0,0,27876,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,89120.55,1262.11,1,,,61,80061,2,1,1,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.045924579,0.267,999999,14.676,2.056,1.228,2.135,10759.008,111,0.0,0.0,0.0,0 +8294,8294,,Block 2011,0,25,PedestrianZones,2299570.336,145164.9663,10,0,0,0.0,0,0,0,,2102,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2011.0,410470000000000.0,1000000US410470002002011,0.0,0.0,80103,0,112,44.9446738,-123.0402366,0,1,8006102011,80068,0,0,27877,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,22623.28,965.19,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,0.519358683,0.397,999999,7.523,0.529,0.4,0.617,5210.141,112,0.0,0.0,0.0,0 +8299,8299,,Block 3022,0,25,PedestrianZones,2300630.804,144646.9451,10,0,0,0.0,0,0,0,,10314,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,1,0,0,62,0,0,0,0,0,0,1,0,0,0,0,0,0,33,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3022.0,410470000000000.0,1000000US410470002003022,0.0,0.0,80103,0,127,44.9403135,-123.0265998,0,3,8008003022,80068,0,0,27883,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,3,0,0,0,1,110995.07,1468.68,1,,,80,80080,2,49,49,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.548094043,0.118,999999,45.587,0.517,3.255,6.026,33032.105,127,0.206077551,3.378588256,0.905816051,0 +8308,8308,,Block 3017,0,25,PedestrianZones,2300238.212,146744.9246,10,0,0,0.0,0,0,0,,6456,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3017.0,410470000000000.0,1000000US410470003003017,0.0,1.0,80103,0,115,44.9590739,-123.032405,0,1,8008803017,80417,0,0,27892,0.0,0.0,0,0,,,,0,0,0.0,0.83,0,0.0,0,0.0,0,0,0,0,1,69481.76,1163.51,1,,,88,80088,1,0,5,0,5,0,0,6,300,,0,0,1,0,0,0,0,0,1.595080233,0.238,999999,4.848,0.131,2.02,3.488,5335.009,115,0.0,0.0,0.0,0 +8395,8395,,Block 3042,0,25,PedestrianZones,2300256.009,145918.8717,10,0,0,0.0,0,0,0,,10378,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,3,0,27,0,0,0,0,0,0,20,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3042.0,410470000000000.0,1000000US410470003003042,0.0,0.5,80103,0,145,44.9516487,-123.0318515,0,3,8008903042,80068,0,0,28070,0.0,0.0,0,0,,,,0,0,0.45,0.45,0,0.0,0,0.0,0,0,0,0,1,111682.43,1337.33,1,,,89,80089,2,61,122,0,61,0,0,136,300,,0,0,1,0,0,0,0,0,2.563873541,0.0,999999,8.141,0.258,3.663,7.637,10098.045,145,0.0,0.0,0.0,0 +8396,8396,,Block 1014,0,25,PedestrianZones,2300219.341,145826.0863,10,0,0,0.0,0,0,0,,10108,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,1,0,10,6,57,17,0,0,7,0,449,4,0,0,5,0,0,462,23,40,0,0,0,9999,0,0,0,0,0,0,0,1,1014.0,410470000000000.0,1000000US410470002001014,0.0,0.05,80103,0,144,44.9508038,-123.0322791,0,3,8008501014,80068,0,0,28071,0.0,0.0,0,0,,,,0,0,7.78,0.38,0,0.0,0,0.0,0,0,0,0,1,108783.14,1319.8,1,,,85,80085,2,529,555,0,26,0,0,68,200,,0,0,1,0,0,0,0,0,2.497314982,0.042,999999,9.957,0.474,3.032,6.137,10300.347,144,0.0,0.0,0.0,0 +8397,8397,,Block 4045,0,25,PedestrianZones,2300449.924,145844.4571,10,0,0,0.0,0,0,0,,9928,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4045.0,410470000000000.0,1000000US410470003004045,0.0,1.0,80103,0,159,44.951034,-123.0293656,0,1,8009004045,80082,0,0,28072,0.0,0.0,0,0,,,,0,0,0.0,0.75,0,0.0,0,0.0,0,0,0,0,1,106842.59,1303.34,1,,,90,80090,1,0,6,0,6,0,0,8,300,,0,0,1,0,0,0,0,0,2.452766283,0.125,999999,7.319,0.212,3.794,7.751,9645.239,159,0.0,0.0,0.0,0 +8398,8398,,Block 1022,0,25,PedestrianZones,2300278.341,145691.0334,10,0,0,0.0,0,0,0,,11244,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,14,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1022.0,410470000000000.0,1000000US410470002001022,0.0,0.43,80103,0,148,44.9496056,-123.0314781,0,3,8008401022,80068,0,0,28073,0.0,0.0,0,0,,,,0,0,0.52,0.39,0,0.0,0,0.0,0,0,0,0,1,121004.87,1387.09,1,,,84,80084,2,12,21,0,9,0,0,23,200,,0,0,1,0,0,0,0,0,2.777887164,0.064,999999,9.37,0.473,3.459,6.786,10339.585,148,0.0,0.0,0.0,0 +8399,8399,,Block 1016,0,25,PedestrianZones,2300411.932,145751.1197,10,0,0,0.0,0,0,0,,9885,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1016.0,410470000000000.0,1000000US410470002001016,0.0,1.0,80103,0,156,44.9501838,-123.0298098,0,1,8008401016,80082,0,0,28074,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,106382.93,1314.32,1,,,84,80084,2,0,14,0,14,0,0,36,200,,0,0,1,0,0,0,0,0,2.442213902,0.123,999999,7.692,0.255,3.972,7.919,9990.636,156,0.0,0.0,0.0,0 +8400,8400,,Block 1021,0,25,PedestrianZones,2300374.051,145653.6882,10,0,0,0.0,0,0,0,,11218,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1021.0,410470000000000.0,1000000US410470002001021,0.0,1.0,80103,0,153,44.9492967,-123.030251,0,1,8008401021,80068,0,0,28075,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,120729.79,1383.95,1,,,84,80084,2,0,12,0,12,0,0,29,200,,0,0,1,0,0,0,0,0,2.771572266,0.124,999999,12.914,0.263,4.082,7.926,13337.944,153,0.0,0.0,0.0,0 +8401,8401,,Block 1034,0,25,PedestrianZones,2300331.716,145406.7095,10,0,0,0.0,0,0,0,,21342,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1034.0,410470000000000.0,1000000US410470002001034,0.0,0.98,80103,0,153,44.9470632,-123.0306892,0,1,8008401034,80068,0,0,28076,0.0,0.0,0,0,,,,0,0,0.01,0.4,0,0.0,0,0.0,6,0,0,0,1,229681.9,1962.16,1,,,84,80084,2,1,46,0,45,0,0,113,200,,0,0,1,0,0,0,0,0,5.272766171,0.127,999999,26.424,0.214,3.633,7.056,21427.629,153,0.0,0.0,0.0,0 +8402,8402,,Block 4044,0,25,PedestrianZones,2300543.349,145808.3677,10,0,0,0.0,0,0,0,,10370,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4044.0,410470000000000.0,1000000US410470003004044,0.0,1.0,80103,0,161,44.9507357,-123.0281679,0,1,8009004044,80082,0,0,28077,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,111596.1,1335.96,1,,,90,80090,1,0,15,0,15,0,0,38,300,,0,0,1,0,0,0,0,0,2.561891735,0.182,999999,6.82,0.243,4.392,8.886,10052.375,161,0.0,0.0,0.0,0 +8403,8403,,Block 1017,0,25,PedestrianZones,2300506.423,145713.96,10,0,0,0.0,0,0,0,,10260,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1017.0,410470000000000.0,1000000US410470002001017,0.0,1.0,80103,0,159,44.9498761,-123.0285982,0,1,8008401017,80082,0,0,28078,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,110410.77,1329.24,1,,,84,80084,2,0,11,0,11,0,0,27,200,,0,0,1,0,0,0,0,0,2.534680346,0.121,999999,11.473,0.203,3.94,8.001,12463.476,159,0.0,0.0,0.0,0 +8404,8404,,Block 4036,0,25,PedestrianZones,2300626.635,145984.4056,10,0,0,0.0,0,0,0,,7005,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4036.0,410470000000000.0,1000000US410470003004036,0.0,1.0,80103,0,170,44.9523426,-123.0271827,0,1,8009004036,80082,0,0,28079,0.0,0.0,0,0,,,,0,0,0.0,0.67,0,0.0,0,0.0,0,0,0,0,1,75388.87,1170.21,1,,,90,80090,1,0,4,0,4,0,0,6,300,,0,0,1,0,0,0,0,0,1.730688696,0.168,999999,5.753,0.216,4.515,9.989,10074.817,170,0.0,0.0,0.0,0 +8405,8405,,Block 4043,0,25,PedestrianZones,2300656.661,145816.5145,10,0,0,1.01,0,0,0,,20768,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,1,0,0,0,0,79,0,0,2,0,0,0,0,0,0,0,0,71,0,0,0,444,0,9999,0,0,0,0,0,0,0,3,4043.0,410470000000000.0,1000000US410470003004043,0.0,0.0,80103,0,164,44.9508409,-123.0267358,0,3,8009004043,80082,0,0,28080,0.0,1.01,0,3,NEIGHBORHOOD PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,223503.24,2003.09,1,,,90,80090,1,62,62,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,5.130923811,0.182,999999,6.82,0.243,4.392,8.886,10052.375,164,0.0,0.0,0.0,0 +8406,8406,,Block 1020,0,25,PedestrianZones,2300470.667,145614.6483,10,0,0,0.0,0,0,0,,11980,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1020.0,410470000000000.0,1000000US410470002001020,0.0,1.0,80103,0,153,44.9489728,-123.0290117,0,1,8008401020,80082,0,0,28081,0.0,0.0,0,0,,,,0,0,0.0,0.35,0,0.0,0,0.0,0,0,0,0,1,128924.69,1436.86,1,,,84,80084,2,0,17,0,17,0,0,48,200,,0,0,1,0,0,0,0,0,2.959700961,0.059,999999,14.343,0.284,4.105,8.113,14372.151,153,0.0,0.0,0.0,0 +8407,8407,,Block 1031,0,25,PedestrianZones,2300432.301,145512.6838,10,0,0,0.0,0,0,0,,11946,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1031.0,410470000000000.0,1000000US410470002001031,0.0,1.0,80103,0,151,44.9480448,-123.0294572,0,1,8008401031,80068,0,0,28082,0.0,0.0,0,0,,,,0,0,0.0,0.38,0,0.0,0,0.0,0,0,0,0,1,128559.52,1436.27,1,,,84,80084,2,0,22,0,22,0,0,58,200,,0,0,1,0,0,0,0,0,2.951317888,0.085,999999,28.513,0.221,3.848,7.566,23090.177,151,0.0,0.0,0.0,0 +8408,8408,,Block 2029,0,25,PedestrianZones,2300392.875,145188.2794,10,0,0,0.0,0,0,0,,31434,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,1,10,0,41,0,0,0,0,0,0,52,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2029.0,410470000000000.0,1000000US410470002002029,0.0,0.41,80103,0,156,44.9451157,-123.0298279,0,3,8006902029,80068,0,0,28083,0.0,0.0,0,0,,,,0,0,0.89,0.61,0,0.8,6,0.0,81,0,0,0,1,338290.32,2574.99,1,,,69,80069,2,85,143,0,58,0,0,95,200,,0,0,1,0,0,0,0,0,7.766070331,0.088,999999,33.831,0.037,3.08,5.699,25299.16,156,0.205534387,3.413050251,0.910666822,0 +8409,8409,,Block 3004,0,25,PedestrianZones,2300676.093,145535.2559,10,0,0,0.0,0,0,0,,14842,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3004.0,410470000000000.0,1000000US410470002003004,0.0,1.0,80103,0,147,44.9483165,-123.0263782,0,1,8008303004,80082,0,0,28084,0.0,0.0,0,0,,,,0,0,0.0,0.83,0,0.0,0,0.0,0,0,0,0,1,159727.99,1614.44,1,,,83,80083,2,0,10,0,10,0,0,12,200,,0,0,1,0,0,0,0,0,3.66684674,0.083,999999,21.838,0.212,4.431,9.322,19942.545,147,0.0,0.0,0.0,0 +8410,8410,,Block 3010,0,25,PedestrianZones,2300597.679,145340.2117,10,0,0,0.0,0,0,0,,13553,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3010.0,410470000000000.0,1000000US410470002003010,0.0,0.0,80103,0,149,44.94654,-123.0272941,0,1,8008203010,80082,0,0,28085,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,99,0,0,0,1,145857.52,1704.39,1,,,82,80082,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.348424861,0.04,999999,31.891,0.089,4.015,8.136,25616.952,149,0.210164487,3.484547554,0.930479872,0 +8432,8432,,Block 1001,0,25,PedestrianZones,2300030.578,146435.2708,10,0,0,0.0,0,0,0,,6854,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,9999,0,0,0,0,0,0,0,1,1001.0,410470000000000.0,1000000US410470002001001,0.0,0.0,80103,0,104,44.95623,-123.0349124,0,3,8008501001,80068,0,0,28163,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,73758.99,1098.84,1,,,85,80085,2,22,22,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,1.693271812,0.338,999999,3.308,0.032,2.044,3.615,4430.353,104,0.0,0.0,0.0,0 +8433,8433,,Block 3033,0,25,PedestrianZones,2300178.788,146276.5749,10,0,0,0.0,0,0,0,,10048,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3033.0,410470000000000.0,1000000US410470003003033,0.0,0.43,80103,0,127,44.9548444,-123.0329718,0,3,8008903033,80068,0,0,28164,0.0,0.0,0,0,,,,0,0,1.0,0.75,0,0.0,0,0.0,0,0,0,0,1,108137.45,1315.99,1,,,89,80089,2,4,7,0,3,0,0,4,300,,0,0,1,0,0,0,0,0,2.482492104,0.184,999999,6.565,0.236,2.741,5.372,7639.842,127,0.0,0.0,0.0,0 +8449,8449,,Block 3004,0,25,PedestrianZones,2299981.675,146800.0778,10,0,0,0.0,0,0,0,,87199,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,45,4,0,19,0,0,35,0,0,0,0,0,0,141,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3004.0,410470000000000.0,1000000US410470003003004,0.0,0.28,80103,0,84,44.9594976,-123.035677,0,3,8008603004,80417,0,0,28189,0.0,0.0,0,0,,,,0,0,1.37,0.52,0,0.0,0,0.0,0,0,0,0,1,938416.62,7718.43,1,,,86,80086,1,97,134,0,37,0,0,71,300,,0,0,1,0,0,0,0,0,21.54306221,0.362,999999,5.032,0.122,1.575,2.601,4885.171,84,0.0,0.0,0.0,0 +8508,8508,,Block 2002,0,25,PedestrianZones,2301069.525,146171.2809,10,0,0,0.0,0,0,0,,6375,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2002.0,410470000000000.0,1000000US410470003002002,0.0,0.73,80103,0,160,44.954148,-123.0216463,0,1,8009502002,80082,0,0,34595,0.0,0.0,0,0,,,,0,0,0.16,0.42,0,0.0,0,0.0,0,0,0,0,1,68603.62,1175.3,1,,,95,80095,1,3,11,0,8,0,0,19,300,,0,0,1,0,0,0,0,0,1.57492091,0.0,999999,4.883,0.18,4.003,8.886,8811.847,160,0.0,0.0,0.0,0 +8527,8527,,Block 3033,0,25,PedestrianZones,2300560.448,144463.0696,10,0,0,0.0,0,0,0,,10181,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,111,0,0,14,0,0,0,11,0,0,102,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3033.0,410470000000000.0,1000000US410470002003033,0.0,0.0,80103,0,135,44.9386397,-123.027418,0,3,8008003033,80068,0,0,34614,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,11,0,0,0,1,109565.76,1452.26,1,,,80,80080,2,120,120,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.515281433,0.033,999999,59.144,0.624,2.545,4.888,40980.34,135,0.205738449,3.377528307,0.905016512,0 +8530,8530,,Block 3058,0,25,PedestrianZones,2299994.964,143791.7637,10,0,0,0.0,0,0,0,,16724,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,5062,0,63,0,0,0,8,0,0,7601,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3058.0,410470000000000.0,1000000US410470002003058,0.0,0.0,80135,0,115,44.932442,-123.0343127,0,3,8007603058,80068,0,0,34617,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,179985.07,2155.56,1,,,76,80076,2,4917,4917,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.131884937,0.046,999999,55.073,0.399,1.129,1.805,36401.862,115,0.0,0.0,0.0,0 +8581,8581,,Block 1016,0,25,PedestrianZones,2301440.112,146499.1845,10,0,0,0.0,0,0,0,,30628,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,1,0,0,0,0,0,0,0,0,0,10,16,0,0,0,0,14,27,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1016.0,410470000000000.0,1000000US410470003001016,0.0,0.0,80103,0,119,44.9572015,-123.0170812,0,3,8009701016,80417,0,0,34669,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,329615.73,2371.59,1,,,97,80097,1,39,39,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,7.566929285,0.109,999999,5.458,0.175,3.063,7.469,8273.535,119,0.0,0.0,0.0,0 +8582,8582,,Block 1022,0,25,PedestrianZones,2301248.444,146352.0288,10,0,0,0.0,0,0,0,,40305,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,4,0,0,0,1,227,0,0,0,0,0,0,0,0,268,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1022.0,410470000000000.0,1000000US410470003001022,0.0,0.0,80103,0,148,44.9558241,-123.0194512,0,3,8009701022,80082,0,0,34670,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,433761.3,2696.58,1,,,97,80097,1,342,342,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,9.957780432,0.156,999999,4.927,0.19,3.874,8.93,8868.411,148,0.0,0.0,0.0,0 +8583,8583,,Block 1024,0,25,PedestrianZones,2301383.178,146237.1823,10,0,0,0.0,0,0,0,,32410,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1024.0,410470000000000.0,1000000US410470003001024,0.0,0.87,80103,0,141,44.9548288,-123.017699,0,1,8009701024,80082,0,0,34671,0.0,0.0,0,0,,,,0,0,0.05,0.35,0,0.0,0,0.0,0,0,0,0,1,348789.45,3192.9,1,,,97,80097,1,5,38,0,33,0,0,94,300,,0,0,1,0,0,0,0,0,8.007096974,0.222,999999,5.289,0.2,3.216,7.584,8238.756,141,0.0,0.0,0.0,0 +8584,8584,,Block 2000,0,25,PedestrianZones,2301227.014,145920.5144,10,0,0,0.0,0,0,0,,51505,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,26,0,0,0,1,0,0,0,0,169,0,0,0,151,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2000.0,410470000000000.0,1000000US410470003002000,0.0,0.33,80103,0,160,44.9519366,-123.0195522,0,3,8009502000,80082,0,0,34672,0.0,0.0,0,0,,,,0,0,0.84,0.41,0,0.0,0,0.0,0,0,0,0,1,554285.77,3502.77,1,,,95,80095,1,148,221,0,73,0,0,177,300,,0,0,1,0,0,0,0,0,12.72463915,0.123,999999,5.649,0.23,4.028,8.987,9367.331,160,0.0,0.0,0.0,0 +8586,8586,,Block 2008,0,25,PedestrianZones,2301171.464,145478.5173,10,0,0,0.0,0,0,0,,10073,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2008.0,410470000000000.0,1000000US410470006002008,0.0,1.0,80103,0,148,44.9479453,-123.0200811,0,1,8010202008,80082,0,0,34674,0.0,0.0,0,0,,,,0,0,0.0,0.52,0,0.0,0,0.0,0,0,0,0,1,108408.89,1346.23,1,,,102,80102,1,0,13,0,13,0,0,25,600,,0,0,1,0,0,0,0,0,2.488723559,0.123,999999,2.958,0.157,4.298,9.34,7870.653,148,0.0,0.0,0.0,0 +8587,8587,,Block 1023,0,25,PedestrianZones,2301373.128,146361.5736,10,0,0,0.0,0,0,0,,12372,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1023.0,410470000000000.0,1000000US410470003001023,0.0,1.0,80103,0,133,44.9559449,-123.0178755,0,1,8009701023,80082,0,0,34675,0.0,0.0,0,0,,,,0,0,0.0,0.44,0,0.0,0,0.0,0,0,0,0,1,133143.47,1544.46,1,,,97,80097,1,0,11,0,11,0,0,25,300,,0,0,1,0,0,0,0,0,3.056550789,0.094,999999,5.253,0.176,3.074,7.466,8140.315,133,0.0,0.0,0.0,0 +8590,8590,,Block 1015,0,25,PedestrianZones,2301568.079,146695.1091,10,0,0,0.0,0,0,0,,46989,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,2,0,4,20,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1015.0,410470000000000.0,1000000US410470003001015,0.0,0.15,80103,0,98,44.9589997,-123.0155374,0,3,8009701015,80417,0,0,34678,0.0,0.0,0,0,,,,0,0,2.75,0.5,0,0.0,0,0.0,0,0,0,0,1,505683.06,3462.17,1,,,97,80097,1,33,39,0,6,0,0,12,300,,0,0,1,0,0,0,0,0,11.60887539,0.079,999999,6.375,0.195,2.676,7.126,8640.768,98,0.0,0.0,0.0,0 +8591,8591,,Block 1004,0,25,PedestrianZones,2301879.593,146292.8481,10,0,0,0.0,0,0,0,,18211,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80518,0,0,0,0,0,0,73,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1004.0,410470000000000.0,1000000US410470006001004,0.0,0.07,80103,0,87,44.9554686,-123.0114324,0,3,8009801004,80377,0,0,34679,0.0,0.0,0,0,,,,0,0,7.0,0.5,0,0.0,0,0.0,0,0,0,0,1,195982.72,1844.44,1,,,98,80098,1,56,60,0,4,0,0,8,600,,0,0,1,0,0,0,0,0,4.499140116,0.0,999999,3.388,0.158,1.348,3.207,4221.129,87,0.0,0.0,0.0,0 +8592,8592,,Block 1000,0,25,PedestrianZones,2301732.73,146994.1813,10,0,0,0.0,0,0,0,,25715,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1000.0,410470000000000.0,1000000US410470003001000,0.0,0.0,80103,0,60,44.9617359,-123.0135694,0,3,8010101000,80417,0,0,34680,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,276741.3,3725.15,1,,,101,80101,1,4,4,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,6.353100336,0.13,999999,5.381,0.08,2.48,6.664,7708.718,60,0.0,0.0,0.0,0 +8595,8595,,Block 1005,0,25,PedestrianZones,2301867.945,146137.0339,10,0,0,0.0,0,0,0,,14061,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1005.0,410470000000000.0,1000000US410470006001005,0.0,1.0,80103,0,94,44.9540638,-123.0115186,0,1,8009801005,80377,0,0,34683,0.0,0.0,0,0,,,,0,0,0.0,0.47,0,0.0,0,0.0,0,0,0,0,1,151325.45,1551.25,1,,,98,80098,1,0,18,0,18,0,0,38,600,,0,0,1,0,0,0,0,0,3.473951257,0.0,999999,2.306,0.154,1.598,3.683,3833.36,94,0.0,0.0,0.0,0 +8596,8596,,Block 1009,0,25,PedestrianZones,2301830.551,146034.6155,10,0,0,0.0,0,0,0,,8880,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1009.0,410470000000000.0,1000000US410470006001009,0.0,0.86,80103,0,101,44.9531321,-123.0119519,0,1,8009801009,80082,0,0,34684,0.0,0.0,0,0,,,,0,0,0.08,0.48,0,0.0,0,0.0,0,0,0,0,1,95565.65,1252.44,1,,,98,80098,1,2,14,0,12,0,0,25,600,,0,0,1,0,0,0,0,0,2.19388346,0.0,999999,3.307,0.118,2.404,5.349,5540.283,101,0.0,0.0,0.0,0 +8597,8597,,Block 1010,0,25,PedestrianZones,2301751.012,146074.6286,10,0,0,0.0,0,0,0,,7774,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1010.0,410470000000000.0,1000000US410470006001010,0.0,0.69,80103,0,107,44.9534697,-123.0129752,0,1,8009801010,80082,0,0,34685,0.0,0.0,0,0,,,,0,0,0.27,0.6,0,0.0,0,0.0,0,0,0,0,1,83658.52,1332.49,1,,,98,80098,1,4,13,0,9,0,0,15,600,,0,0,1,0,0,0,0,0,1.92053363,0.063,999999,3.478,0.239,2.701,6.049,6097.613,107,0.0,0.0,0.0,0 +8598,8598,,Block 1008,0,25,PedestrianZones,2301912.108,145956.0491,10,0,0,0.0,0,0,0,,17232,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1008.0,410470000000000.0,1000000US410470006001008,0.0,1.0,80103,0,95,44.9524482,-123.0108878,0,1,8009901008,80082,0,0,34686,0.0,0.0,0,0,,,,0,0,0.0,0.44,0,0.0,0,0.0,0,0,0,0,1,185445.81,1766.01,1,,,99,80099,1,0,23,0,23,0,0,52,600,,0,0,1,0,0,0,0,0,4.25724625,0.048,999999,3.975,0.262,2.885,6.595,6764.9,95,0.0,0.0,0.0,0 +8768,8768,,Block 3008,0,25,PedestrianZones,2300094.865,146845.6756,10,0,0,0.0,0,0,0,,1334,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3008.0,410470000000000.0,1000000US410470003003008,0.0,0.0,80103,0,94,44.9599397,-123.0342611,0,1,8008603008,80417,0,0,51053,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,14355.44,540.81,1,,,86,80086,1,0,0,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,0.329555367,0.303,999999,4.855,0.107,1.854,3.322,5232.978,94,0.0,0.0,0.0,0 +8772,8772,,Block 1006,0,25,PedestrianZones,2302062.559,146052.7108,10,0,0,0.0,0,0,0,,13014,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1006.0,410470000000000.0,1000000US410470006001006,0.0,1.0,80103,0,85,44.9533597,-123.00902,0,1,8009901006,80377,0,0,51058,0.0,0.0,0,0,,,,0,0,0.0,0.47,0,0.0,0,0.0,0,0,0,0,1,140048.62,1500.34,1,,,99,80099,1,0,15,0,15,0,0,32,600,,0,0,1,0,0,0,0,0,3.215071091,0.127,999999,3.613,0.149,2.925,6.636,6559.208,85,0.0,0.0,0.0,0 +8782,8782,,Block 3012,0,25,PedestrianZones,2300371.783,146860.498,10,0,0,0.0,0,0,0,,11565,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3012.0,410470000000000.0,1000000US410470003003012,0.0,1.0,80103,0,131,44.9601512,-123.0307587,0,1,8008803012,80417,0,0,51081,0.0,0.0,0,0,,,,0,0,0.0,0.83,0,0.0,0,0.0,0,0,0,0,1,124459.39,1413.18,1,,,88,80088,1,0,15,0,15,0,0,18,300,,0,0,1,0,0,0,0,0,2.857192018,0.175,999999,4.016,0.1,2.705,5.605,6157.404,131,0.0,0.0,0.0,0 +8783,8783,,Block 3026,0,25,PedestrianZones,2300150.553,146520.2188,10,0,0,0.0,0,0,0,,11625,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,1,0,0,0,0,0,0,0,60,0,0,0,0,0,1,0,0,82,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3026.0,410470000000000.0,1000000US410470003003026,0.0,0.03,80103,0,118,44.957028,-123.0334263,0,3,8008603026,80417,0,0,51082,0.0,0.0,0,0,,,,0,0,36.0,1.0,0,0.0,0,0.0,0,0,0,0,1,125100.73,1419.04,1,,,86,80086,1,72,74,0,2,0,0,2,300,,0,0,1,0,0,0,0,0,2.871915146,0.24,999999,4.548,0.114,2.293,4.148,5565.433,118,0.0,0.0,0.0,0 +8784,8784,,Block 3031,0,25,PedestrianZones,2300309.956,146334.0427,10,0,0,0.0,0,0,0,,10030,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,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,9999,0,0,0,0,0,0,0,1,3031.0,410470000000000.0,1000000US410470003003031,0.0,0.83,80103,0,145,44.9553983,-123.031333,0,1,8008903031,80082,0,0,51083,0.0,0.0,0,0,,,,0,0,0.11,0.53,0,0.0,0,0.0,0,0,0,0,1,107936.31,1314.33,1,,,89,80089,2,4,24,0,20,0,0,38,300,,0,0,1,0,0,0,0,0,2.477874545,0.06,999999,7.297,0.252,3.313,6.607,8898.875,145,0.0,0.0,0.0,0 +8785,8785,,Block 3036,0,25,PedestrianZones,2300331.323,146108.2886,10,0,0,0.0,0,0,0,,10969,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3036.0,410470000000000.0,1000000US410470003003036,0.0,0.43,80103,0,147,44.9533737,-123.0309727,0,3,8008903036,80068,0,0,51084,0.0,0.0,0,0,,,,0,0,1.2,0.9,0,0.0,0,0.0,0,0,0,0,1,118044.7,1374.73,1,,,89,80089,2,12,21,0,9,0,0,10,300,,0,0,1,0,0,0,0,0,2.709930924,0.0,999999,6.556,0.185,3.453,7.219,8815.642,147,0.0,0.0,0.0,0 +8786,8786,,Block 4016,0,25,PedestrianZones,2300645.534,146536.778,10,0,0,0.0,0,0,0,,57946,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,14,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4016.0,410470000000000.0,1000000US410470003004016,0.0,0.95,80103,0,177,44.9573164,-123.0271622,0,1,8009204016,80417,0,0,51085,0.0,0.0,0,0,,,,0,0,0.02,0.4,0,0.0,0,0.0,0,0,0,0,1,623601.9,3706.11,1,,,92,80092,1,4,76,0,72,0,0,179,300,,0,0,1,0,0,0,0,0,14.31591706,0.235,999999,3.453,0.183,4.206,8.493,7645.234,177,0.0,0.0,0.0,0 +8787,8787,,Block 4028,0,25,PedestrianZones,2300596.545,146220.6058,10,0,0,0.0,0,0,0,,9753,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4028.0,410470000000000.0,1000000US410470003004028,0.0,1.0,80103,0,181,44.9544587,-123.0276575,0,1,8009104028,80082,0,0,51086,0.0,0.0,0,0,,,,0,0,0.0,0.38,0,0.0,0,0.0,0,0,0,0,1,104959.91,1296.0,1,,,91,80091,1,0,12,0,12,0,0,32,300,,0,0,1,0,0,0,0,0,2.4095459,0.127,999999,3.84,0.138,4.323,9.235,8367.934,181,0.0,0.0,0.0,0 +8789,8789,,Block 4008,0,25,PedestrianZones,2300879.367,146899.9788,10,0,0,0.0,0,0,0,,12017,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4008.0,410470000000000.0,1000000US410470003004008,0.0,1.0,80103,0,146,44.9606492,-123.0243437,0,1,8009304008,80417,0,0,51088,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,129321.24,1421.59,1,,,93,80093,1,0,19,0,19,0,0,49,300,,0,0,1,0,0,0,0,0,2.968804568,0.089,999999,4.051,1.481,3.143,7.481,7380.431,146,0.0,0.0,0.0,0 +8808,8808,,Block 3004,0,25,PedestrianZones,2301665.445,144885.9005,10,0,0,0.0,0,0,0,,23663,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,3004.0,410470000000000.0,1000000US410470006003004,0.0,0.92,80103,0,132,44.9427532,-123.0135905,0,1,8010503004,80082,0,0,51110,0.0,0.0,0,0,,,,0,0,0.05,0.55,0,0.0,0,0.0,0,0,0,0,1,254654.16,2135.73,1,,,105,80105,1,2,26,0,24,0,0,44,600,,0,0,1,0,0,0,0,0,5.846049819,0.128,999999,2.312,0.096,4.219,9.324,7446.7,132,0.0,0.0,0.0,0 +8809,8809,,Block 3011,0,25,PedestrianZones,2301766.21,144660.759,10,0,0,0.0,0,0,0,,22714,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3011.0,410470000000000.0,1000000US410470006003011,0.0,0.96,80103,0,124,44.9407563,-123.0122256,0,1,8010503011,80082,0,0,51111,0.0,0.0,0,0,,,,0,0,0.02,0.47,0,0.0,0,0.0,0,0,0,0,1,244442.01,2153.57,1,,,105,80105,1,2,48,0,46,0,0,98,600,,0,0,1,0,0,0,0,0,5.611611453,0.037,999999,3.119,0.089,3.993,8.321,7321.613,124,0.0,0.0,0.0,0 +8810,8810,,Block 3012,0,25,PedestrianZones,2301862.773,144663.9436,10,0,0,0.0,0,0,0,,19703,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3012.0,410470000000000.0,1000000US410470006003012,0.0,0.97,80103,0,120,44.940812,-123.0110039,0,1,8010503012,80082,0,0,51112,0.0,0.0,0,0,,,,0,0,0.01,0.49,0,0.0,0,0.0,0,0,0,0,1,212041.64,2007.99,1,,,105,80105,1,1,38,0,37,0,0,75,600,,0,0,1,0,0,0,0,0,4.867801952,0.108,999999,9.61,0.08,2.702,6.292,10177.123,120,0.0,0.0,0.0,0 +8813,8813,,Block 5008,0,25,PedestrianZones,2301647.275,143992.1514,10,0,0,0.0,0,0,0,,57300,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80119,0,0,0,0,0,0,23,1,0,0,10,0,112,0,0,0,20,0,0,146,6,1,0,0,0,9999,0,0,0,0,0,0,0,4,5008.0,410470000000000.0,1000000US410470009005008,0.0,0.4,80103,0,142,44.9347089,-123.0134684,0,3,8010905008,80082,0,0,51115,0.0,0.0,0,0,,,,0,0,0.52,0.35,0,0.0,0,0.0,0,0,0,0,1,616647.9,3142.65,1,,,109,80109,1,121,203,0,82,0,0,233,900,,0,0,1,0,0,0,0,0,14.1562753,0.364,999999,2.617,0.097,4.699,10.403,8332.732,142,0.0,0.0,0.0,0 +8919,8919,,Block 3008,0,25,PedestrianZones,2301192.303,145039.9554,10,0,0,0.0,0,0,0,,26310,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3008.0,410470000000000.0,1000000US410470006003008,0.0,0.98,80103,0,141,44.9440063,-123.0196439,0,1,8010403008,80082,0,0,51367,0.0,0.0,0,0,,,,0,0,0.01,0.43,0,0.0,0,0.0,0,0,0,0,1,283140.29,2252.18,1,,,104,80104,1,1,66,0,65,0,0,150,600,,0,0,1,0,0,0,0,0,6.500000829,0.128,999999,2.431,0.105,5.04,10.364,8188.494,141,0.0,0.0,0.0,0 +8920,8920,,Block 3015,0,25,PedestrianZones,2301280.591,144946.3677,10,0,0,0.0,0,0,0,,14574,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3015.0,410470000000000.0,1000000US410470006003015,0.0,1.0,80103,0,143,44.9431893,-123.0184887,0,1,8010403015,80082,0,0,51368,0.0,0.0,0,0,,,,0,0,0.0,0.63,0,0.0,0,0.0,0,0,0,0,1,156839.09,1584.87,1,,,104,80104,1,0,15,0,15,0,0,24,600,,0,0,1,0,0,0,0,0,3.600526912,0.136,999999,2.447,0.092,4.76,9.972,7948.525,143,0.0,0.0,0.0,0 +8921,8921,,Block 2016,0,25,PedestrianZones,2301510.546,145225.545,10,0,0,0.0,0,0,0,,12072,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2016.0,410470000000000.0,1000000US410470006002016,0.0,1.0,80103,0,141,44.9457649,-123.0156864,0,1,8010202016,80082,0,0,51369,0.0,0.0,0,0,,,,0,0,0.0,0.45,0,0.0,0,0.0,0,0,0,0,1,129914.71,1436.98,1,,,102,80102,1,0,13,0,13,0,0,29,600,,0,0,1,0,0,0,0,0,2.982428748,0.0,999999,1.486,0.141,4.256,9.431,6986.696,141,0.0,0.0,0.0,0 +8922,8922,,Block 3006,0,25,PedestrianZones,2301427.743,145012.3315,10,0,0,0.0,0,0,0,,11129,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,24,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3006.0,410470000000000.0,1000000US410470006003006,0.0,0.19,80103,0,137,44.9438239,-123.016651,0,3,8010403006,80082,0,0,51370,0.0,0.0,0,0,,,,0,0,2.63,0.63,0,0.0,0,0.0,0,0,0,0,1,119771.81,1386.54,1,,,104,80104,1,50,62,0,12,0,0,19,600,,0,0,1,0,0,0,0,0,2.749580051,0.0,999999,1.818,0.098,4.595,9.79,7429.612,137,0.0,0.0,0.0,0 +8923,8923,,Block 2028,0,25,PedestrianZones,2301468.628,145118.4847,10,0,0,0.0,0,0,0,,11755,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,9999,0,0,0,0,0,0,0,4,2028.0,410470000000000.0,1000000US410470006002028,0.0,0.81,80103,0,136,44.9447902,-123.0161751,0,1,8010202028,80082,0,0,51371,0.0,0.0,0,0,,,,0,0,0.1,0.43,0,0.0,0,0.0,0,0,0,0,1,126502.67,1432.69,1,,,102,80102,1,3,16,0,13,0,0,30,600,,0,0,1,0,0,0,0,0,2.904099222,0.0,999999,1.671,0.101,4.296,9.356,7057.194,136,0.0,0.0,0.0,0 +8924,8924,,Block 2027,0,25,PedestrianZones,2301566.541,145084.5699,10,0,0,0.0,0,0,0,,11903,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2027.0,410470000000000.0,1000000US410470006002027,0.0,1.0,80103,0,140,44.9445126,-123.0149215,0,1,8010002027,80082,0,0,51372,0.0,0.0,0,0,,,,0,0,0.0,0.43,0,0.0,0,0.0,0,0,0,0,1,128101.61,1436.98,1,,,100,80100,1,0,13,0,13,0,0,30,600,,0,0,1,0,0,0,0,0,2.940805694,0.062,999999,1.576,0.098,4.217,9.287,6952.501,140,0.0,0.0,0.0,0 +8925,8925,,Block 3005,0,25,PedestrianZones,2301553.631,144920.8063,10,0,0,0.0,0,0,0,,26528,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3005.0,410470000000000.0,1000000US410470006003005,0.0,1.0,80103,0,134,44.9430359,-123.0150205,0,1,8010503005,80082,0,0,51373,0.0,0.0,0,0,,,,0,0,0.0,0.51,0,0.0,0,0.0,0,0,0,0,1,285489.53,2667.53,1,,,105,80105,1,0,27,0,27,0,0,53,600,,0,0,1,0,0,0,0,0,6.553931915,0.131,999999,1.792,0.09,4.809,9.924,7498.429,134,0.0,0.0,0.0,0 +8926,8926,,Block 3017,0,25,PedestrianZones,2301481.949,144866.2389,10,0,0,0.0,0,0,0,,13525,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3017.0,410470000000000.0,1000000US410470006003017,0.0,1.0,80103,0,141,44.942525,-123.0159068,0,1,8010503017,80082,0,0,51374,0.0,0.0,0,0,,,,0,0,0.0,0.64,0,0.0,0,0.0,0,0,0,0,1,145562.58,1544.18,1,,,105,80105,1,0,16,0,16,0,0,25,600,,0,0,1,0,0,0,0,0,3.341654113,0.131,999999,1.792,0.09,4.809,9.924,7498.429,141,0.0,0.0,0.0,0 +8927,8927,,Block 2026,0,25,PedestrianZones,2301659.889,145055.393,10,0,0,0.0,0,0,0,,9719,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,2026.0,410470000000000.0,1000000US410470006002026,0.0,0.89,80103,0,138,44.9442762,-123.0137277,0,1,8010002026,80082,0,0,51375,0.0,0.0,0,0,,,,0,0,0.07,0.57,0,0.0,0,0.0,0,0,0,0,1,104596.04,1316.64,1,,,100,80100,1,1,9,0,8,0,0,14,600,,0,0,1,0,0,0,0,0,2.401192545,0.125,999999,1.177,0.043,4.341,9.587,6889.145,138,0.0,0.0,0.0,0 +8928,8928,,Block 3020,0,25,PedestrianZones,2301306.07,144621.9083,10,0,0,0.0,0,0,0,,10852,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3020.0,410470000000000.0,1000000US410470006003020,0.0,0.67,80103,0,151,44.9402779,-123.0180379,0,1,8010403020,80082,0,0,51376,0.0,0.0,0,0,,,,0,0,0.32,0.63,0,0.0,0,0.0,0,0,0,0,1,116786.29,1790.58,1,,,104,80104,1,6,18,0,12,0,0,19,600,,0,0,1,0,0,0,0,0,2.681041857,0.0,999999,6.244,0.098,4.989,9.997,10394.828,151,0.0,0.0,0.0,0 +8929,8929,,Block 6003,0,25,PedestrianZones,2301406.63,144394.1136,10,0,0,0.0,0,0,0,,26217,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6003.0,410470000000000.0,1000000US410470009006003,0.0,0.9,80103,0,155,44.9382571,-123.0166744,0,1,8010806003,80082,0,0,51377,0.0,0.0,0,0,,,,0,0,0.05,0.51,0,0.0,0,0.0,0,0,0,0,1,282140.36,2544.54,1,,,108,80108,1,4,42,0,38,0,0,74,900,,0,0,1,0,0,0,0,0,6.477045719,0.134,999999,4.403,0.15,4.91,10.152,9315.451,155,0.0,0.0,0.0,0 +8930,8930,,Block 3022,0,25,PedestrianZones,2301500.635,144642.8232,10,0,0,0.0,0,0,0,,26477,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3022.0,410470000000000.0,1000000US410470006003022,0.0,1.0,80103,0,137,44.9405206,-123.015582,0,1,8010503022,80082,0,0,51378,0.0,0.0,0,0,,,,0,0,0.0,0.45,0,0.0,0,0.0,0,0,0,0,1,284936.7,2379.49,1,,,105,80105,1,0,66,0,66,0,0,147,600,,0,0,1,0,0,0,0,0,6.54124086,0.242,999999,1.928,0.096,4.422,8.525,6690.194,137,0.0,0.0,0.0,0 +8931,8931,,Block 6004,0,25,PedestrianZones,2301319.56,144432.3173,10,0,0,0.0,0,0,0,,19657,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,3,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6004.0,410470000000000.0,1000000US410470009006004,0.0,0.75,80103,0,161,44.9385764,-123.0177922,0,1,8010806004,80082,0,0,51379,0.0,0.0,0,0,,,,0,0,0.21,0.62,0,0.0,0,0.0,0,0,0,0,1,211548.11,1981.74,1,,,108,80108,1,7,28,0,21,0,0,34,900,,0,0,1,0,0,0,0,0,4.856472152,0.083,999999,5.526,0.11,4.964,9.752,9777.743,161,0.0,0.0,0.0,0 +8932,8932,,Block 1013,0,25,PedestrianZones,2301767.191,145878.5315,10,0,0,0.0,0,0,0,,9212,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1013.0,410470000000000.0,1000000US410470006001013,0.0,1.0,80103,0,117,44.9517104,-123.012693,0,1,8009801013,80082,0,0,51380,0.0,0.0,0,0,,,,0,0,0.0,0.55,0,0.0,0,0.0,0,0,0,0,1,99140.03,1293.44,1,,,98,80098,1,0,12,0,12,0,0,22,600,,0,0,1,0,0,0,0,0,2.275939875,0.0,999999,3.666,0.268,3.318,7.629,7228.714,117,0.0,0.0,0.0,0 +8933,8933,,Block 1012,0,25,PedestrianZones,2301798.746,145956.3137,10,0,0,0.0,0,0,0,,8868,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1012.0,410470000000000.0,1000000US410470006001012,0.0,1.0,80103,0,109,44.9524188,-123.0123239,0,1,8009801012,80082,0,0,51381,0.0,0.0,0,0,,,,0,0,0.0,0.5,0,0.0,0,0.0,0,0,0,0,1,95430.66,1237.22,1,,,98,80098,1,0,12,0,12,0,0,24,600,,0,0,1,0,0,0,0,0,2.190784649,0.048,999999,3.975,0.262,2.885,6.595,6764.9,109,0.0,0.0,0.0,0 +8934,8934,,Block 1020,0,25,PedestrianZones,2301848.968,145802.2101,10,0,0,0.0,0,0,0,,17361,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1020.0,410470000000000.0,1000000US410470006001020,0.0,0.67,80103,0,115,44.9510467,-123.0116271,0,1,8009901020,80082,0,0,51382,0.0,0.0,0,0,,,,0,0,0.21,0.42,0,0.0,0,0.0,0,0,0,0,1,186833.35,1786.12,1,,,99,80099,1,10,30,0,20,0,0,48,600,,0,0,1,0,0,0,0,0,4.289099681,0.051,999999,3.514,0.26,3.364,7.776,7225.625,115,0.0,0.0,0.0,0 +8935,8935,,Block 1021,0,25,PedestrianZones,2301948.263,145762.5788,10,0,0,0.0,0,0,0,,17740,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1021.0,410470000000000.0,1000000US410470006001021,0.0,0.93,80103,0,110,44.950718,-123.0103537,0,1,8009901021,80082,0,0,51383,0.0,0.0,0,0,,,,0,0,0.03,0.47,0,0.0,0,0.0,0,0,0,0,1,190911.61,1794.35,1,,,99,80099,1,1,15,0,14,0,0,30,600,,0,0,1,0,0,0,0,0,4.382723652,0.127,999999,3.253,0.146,3.264,7.552,6915.478,110,0.0,0.0,0.0,0 +8936,8936,,Block 1029,0,25,PedestrianZones,2301888.668,145620.1207,10,0,0,0.0,0,0,0,,14933,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1029.0,410470000000000.0,1000000US410470006001029,0.0,1.0,80103,0,119,44.94942,-123.0110525,0,1,8009901029,80082,0,0,51384,0.0,0.0,0,0,,,,0,0,0.0,0.42,0,0.0,0,0.0,0,0,0,0,1,160703.73,1657.84,1,,,99,80099,1,0,19,0,19,0,0,45,600,,0,0,1,0,0,0,0,0,3.689246675,0.0,999999,1.911,0.226,4.074,9.341,7201.562,119,0.0,0.0,0.0,0 +8937,8937,,Block 2002,0,25,PedestrianZones,2301841.023,145479.607,10,0,0,0.0,0,0,0,,15633,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2002.0,410470000000000.0,1000000US410470006002002,0.0,1.0,80103,0,131,44.9481427,-123.0116006,0,1,8010002002,80082,0,0,51385,0.0,0.0,0,0,,,,0,0,0.0,0.38,0,0.0,0,0.0,0,0,0,0,1,168238.59,1706.02,1,,,100,80100,1,0,16,0,16,0,0,42,600,,0,0,1,0,0,0,0,0,3.862223256,0.064,999999,1.985,0.172,4.076,9.308,7227.372,131,0.0,0.0,0.0,0 +8938,8938,,Block 2020,0,25,PedestrianZones,2301703.068,145153.5131,10,0,0,0.0,0,0,0,,10502,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2020.0,410470000000000.0,1000000US410470006002020,0.0,0.7,80103,0,144,44.9451709,-123.0132195,0,1,8010002020,80082,0,0,51386,0.0,0.0,0,0,,,,0,0,0.23,0.54,0,0.0,0,0.0,0,0,0,0,1,113020.88,1341.4,1,,,100,80100,1,3,10,0,7,0,0,13,600,,0,0,1,0,0,0,0,0,2.594600022,0.124,999999,0.797,0.043,4.457,9.965,6887.952,144,0.0,0.0,0.0,0 +8939,8939,,Block 1034,0,25,PedestrianZones,2301994.793,145603.9906,10,0,0,0.0,0,0,0,,9826,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,1034.0,410470000000000.0,1000000US410470006001034,0.0,0.92,80103,0,119,44.9493045,-123.0097018,0,1,8009901034,80082,0,0,51387,0.0,0.0,0,0,,,,0,0,0.05,0.58,0,0.0,0,0.0,0,0,0,0,1,105740.61,1361.98,1,,,99,80099,1,1,12,0,11,0,0,19,600,,0,0,1,0,0,0,0,0,2.427468202,0.064,999999,1.427,0.115,3.86,9.143,6764.897,119,0.0,0.0,0.0,0 +8940,8940,,Block 1033,0,25,PedestrianZones,2302186.035,145666.7423,10,0,0,0.0,0,0,0,,36834,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1033.0,410470000000000.0,1000000US410470006001033,0.0,0.93,80103,0,112,44.9499224,-123.0073041,0,1,8009901033,80082,0,0,51388,0.0,0.0,0,0,,,,0,0,0.03,0.45,0,0.0,0,0.0,0,0,0,0,1,396404.73,2632.44,1,,,99,80099,1,3,44,0,41,0,0,91,600,,0,0,1,0,0,0,0,0,9.100192407,0.242,999999,1.792,0.139,3.753,8.903,6844.999,112,0.0,0.0,0.0,0 +8942,8942,,Block 2021,0,25,PedestrianZones,2301799.451,145111.3602,10,0,0,0.0,0,0,0,,11934,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2021.0,410470000000000.0,1000000US410470006002021,0.0,0.61,80103,0,149,44.9448187,-123.0119821,0,1,8010002021,80082,0,0,51390,0.0,0.0,0,0,,,,0,0,0.25,0.39,0,0.0,0,0.0,0,0,0,0,1,128433.52,1426.74,1,,,100,80100,1,7,18,0,11,0,0,28,600,,0,0,1,0,0,0,0,0,2.948425366,0.191,999999,1.898,0.043,3.634,8.197,6460.849,149,0.0,0.0,0.0,0 +8943,8943,,Block 3010,0,25,PedestrianZones,2301667.924,144659.8677,10,0,0,0.0,0,0,0,,22098,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3010.0,410470000000000.0,1000000US410470006003010,0.0,0.97,80103,0,126,44.9407208,-123.01347,0,1,8010503010,80082,0,0,51391,0.0,0.0,0,0,,,,0,0,0.01,0.47,0,0.0,0,0.0,0,0,0,0,1,237816.44,2141.69,1,,,105,80105,1,1,34,0,33,0,0,70,600,,0,0,1,0,0,0,0,0,5.45950951,0.014,999999,3.057,0.092,3.999,8.33,7287.65,126,0.0,0.0,0.0,0 +8944,8944,,Block 2025,0,25,PedestrianZones,2301759.186,145018.8729,10,0,0,0.0,0,0,0,,11766,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2025.0,410470000000000.0,1000000US410470006002025,0.0,1.0,80103,0,144,44.9439755,-123.0124557,0,1,8010002025,80082,0,0,51392,0.0,0.0,0,0,,,,0,0,0.0,0.44,0,0.0,0,0.0,0,0,0,0,1,126625.58,1410.53,1,,,100,80100,1,0,11,0,11,0,0,25,600,,0,0,1,0,0,0,0,0,2.906920808,0.145,999999,2.655,0.087,3.944,8.635,7225.2,144,0.0,0.0,0.0,0 +8945,8945,,Block 2024,0,25,PedestrianZones,2301870.512,144995.7963,10,0,0,0.0,0,0,0,,4764,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2024.0,410470000000000.0,1000000US410470006002024,0.0,1.0,80103,0,141,44.9437991,-123.0110366,0,1,8010002024,80082,0,0,51393,0.0,0.0,0,0,,,,0,0,0.0,0.5,0,0.0,0,0.0,0,0,0,0,1,51271.36,995.56,1,,,100,80100,1,0,4,0,4,0,0,8,600,,0,0,1,0,0,0,0,0,1.177027506,0.224,999999,2.124,0.041,4.052,9.005,7122.914,141,0.0,0.0,0.0,0 +8946,8946,,Block 6001,0,25,PedestrianZones,2301628.264,144461.9556,10,0,0,0.0,0,0,0,,8449,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6001.0,410470000000000.0,1000000US410470009006001,0.0,0.95,80103,0,138,44.9389295,-123.0138943,0,1,8010806001,80082,0,0,51394,0.0,0.0,0,0,,,,0,0,0.03,0.58,0,0.0,0,0.0,0,0,0,0,1,90928.89,1456.08,1,,,108,80108,1,1,19,0,18,0,0,31,900,,0,0,1,0,0,0,0,0,2.087438189,0.065,999999,4.084,0.12,4.555,9.45,8661.444,138,0.0,0.0,0.0,0 +8948,8948,,Block 3000,0,25,PedestrianZones,2302000.776,144811.9046,10,0,0,9.47,0,0,0,,101060,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,1,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,230,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3000.0,410470000000000.0,1000000US410470006003000,3.38,0.16,80103,0,127,44.9421814,-123.0093143,0,3,8010703000,80082,0,0,51396,0.0,9.47,0,2,CEMETERY,DEVELOPED,,0,0,2.53,0.47,0,0.0,0,0.0,0,0,0,0,1,1087584.35,5035.37,1,,,107,80107,1,172,204,0,32,0,0,68,600,,0,0,1,0,0,0,0,0,24.96747909,0.161,999999,11.247,0.026,2.32,5.632,10802.504,127,0.0,0.0,0.0,0 +8950,8950,,Block 5001,0,25,PedestrianZones,2301908.88,144494.932,10,0,0,0.0,0,0,0,,10033,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5001.0,410470000000000.0,1000000US410470009005001,0.0,1.0,80103,0,119,44.9393046,-123.0103534,0,1,8010905001,80082,0,0,51398,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,107970.23,1369.38,1,,,109,80109,1,0,13,0,13,0,0,33,900,,0,0,1,0,0,0,0,0,2.478653264,0.082,999999,8.334,0.073,3.281,7.292,10000.752,119,0.0,0.0,0.0,0 +8951,8951,,Block 3001,0,25,PedestrianZones,2302057.658,144616.246,10,0,0,0.0,0,0,0,,17255,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,7,129,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3001.0,410470000000000.0,1000000US410470006003001,0.0,0.11,80103,0,117,44.9404374,-123.0085169,0,3,8010703001,80082,0,0,51399,0.0,0.0,0,0,,,,0,0,5.27,0.65,0,0.0,0,0.0,0,0,0,0,1,185698.0,1804.97,1,,,107,80107,1,137,154,0,17,0,0,26,600,,0,0,1,0,0,0,0,0,4.263035608,0.009,999999,8.593,0.07,2.444,5.661,9122.353,117,0.0,0.0,0.0,0 +8952,8952,,Block 5000,0,25,PedestrianZones,2301985.149,144488.7641,10,0,0,0.0,0,0,0,,12727,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5000.0,410470000000000.0,1000000US410470009005000,0.0,0.89,80103,0,121,44.9392704,-123.0093851,0,1,8010905000,80082,0,0,51400,0.0,0.0,0,0,,,,0,0,0.04,0.36,0,0.0,0,0.0,0,0,0,0,1,136968.15,1606.47,1,,,109,80109,1,2,19,0,17,0,0,47,900,,0,0,1,0,0,0,0,0,3.144353232,0.046,999999,8.654,0.072,2.835,6.372,9617.045,121,0.0,0.0,0.0,0 +8953,8953,,Block 6022,0,25,PedestrianZones,2301341.013,144183.0177,10,0,0,0.0,0,0,0,,12671,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6022.0,410470000000000.0,1000000US410470009006022,0.0,1.0,80103,0,168,44.93634,-123.0174221,0,1,8010806022,80082,0,0,51401,0.0,0.0,0,0,,,,0,0,0.0,0.71,0,0.0,0,0.0,0,0,0,0,1,136364.81,1505.42,1,,,108,80108,1,0,17,0,17,0,0,24,900,,0,0,1,0,0,0,0,0,3.13050245,0.201,999999,4.059,0.13,5.374,10.971,9619.604,168,0.0,0.0,0.0,0 +8954,8954,,Block 6021,0,25,PedestrianZones,2301438.043,144159.9518,10,0,0,0.0,0,0,0,,12161,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6021.0,410470000000000.0,1000000US410470009006021,0.0,1.0,80103,0,150,44.9361597,-123.0161842,0,1,8010806021,80082,0,0,51402,0.0,0.0,0,0,,,,0,0,0.0,0.7,0,0.0,0,0.0,0,0,0,0,1,130869.37,1665.1,1,,,108,80108,1,0,14,0,14,0,0,20,900,,0,0,1,0,0,0,0,0,3.004344613,0.25,999999,4.083,0.167,4.552,9.341,8591.493,150,0.0,0.0,0.0,0 +8955,8955,,Block 6026,0,25,PedestrianZones,2301464.767,144264.8092,10,0,0,0.0,0,0,0,,12843,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,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,9999,0,0,0,0,0,0,0,4,6026.0,410470000000000.0,1000000US410470009006026,0.0,0.94,80103,0,155,44.9371103,-123.0158871,0,1,8010806026,80082,0,0,51403,0.0,0.0,0,0,,,,0,0,0.04,0.74,0,0.0,0,0.0,0,0,0,0,1,138217.56,1498.25,1,,,108,80108,1,1,18,0,17,0,0,23,900,,0,0,1,0,0,0,0,0,3.173035806,0.198,999999,4.379,0.149,4.834,9.966,9180.858,155,0.0,0.0,0.0,0 +8956,8956,,Block 6018,0,25,PedestrianZones,2301569.732,144260.7794,10,0,0,2.31,0,0,0,,15724,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6018.0,410470000000000.0,1000000US410470009006018,0.87,1.0,80103,0,141,44.9371035,-123.0145563,0,1,8010806018,80082,0,0,51404,0.0,2.31,0,3,NEIGHBORHOOD PARK,DEVELOPED,,0,0,0.0,1.0,0,0.0,0,0.0,0,0,0,0,1,169222.63,2023.81,1,,,108,80108,1,0,2,0,2,0,0,2,900,,0,0,1,0,0,0,0,0,3.884813534,0.198,999999,4.379,0.149,4.834,9.966,9180.858,141,0.0,0.0,0.0,0 +8957,8957,,Block 5005,0,25,PedestrianZones,2301812.135,144179.157,10,0,0,0.0,0,0,0,,12222,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5005.0,410470000000000.0,1000000US410470009005005,0.0,1.0,80103,0,121,44.9364372,-123.0114543,0,1,8010905005,80082,0,0,51405,0.0,0.0,0,0,,,,0,0,0.0,0.42,0,0.0,0,0.0,0,0,0,0,1,131536.12,1789.61,1,,,109,80109,1,0,15,0,15,0,0,36,900,,0,0,1,0,0,0,0,0,3.019651155,0.26,999999,9.635,0.111,3.242,7.699,11093.994,121,0.0,0.0,0.0,0 +8960,8960,,Block 6020,0,25,PedestrianZones,2301526.56,144116.7799,10,0,0,0.0,0,0,0,,10833,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6020.0,410470000000000.0,1000000US410470009006020,0.0,1.0,80103,0,140,44.9357961,-123.0150462,0,1,8010806020,80082,0,0,51408,0.0,0.0,0,0,,,,0,0,0.0,0.75,0,0.0,0,0.0,0,0,0,0,1,116577.7,1383.26,1,,,108,80108,1,0,6,0,6,0,0,8,900,,0,0,1,0,0,0,0,0,2.676253404,0.228,999999,3.57,0.155,4.607,9.769,8537.241,140,0.0,0.0,0.0,0 +8983,8983,,Block 1003,0,25,PedestrianZones,2301982.365,146207.1043,10,0,0,0.0,0,0,0,,39805,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1003.0,410470000000000.0,1000000US410470006001003,0.0,1.0,80103,0,86,44.954726,-123.0100967,0,1,8009901003,80377,0,0,51687,0.0,0.0,0,0,,,,0,0,0.0,0.42,0,0.0,0,0.0,0,0,0,0,1,428372.87,3012.04,1,,,99,80099,1,0,19,0,19,0,0,45,600,,0,0,1,0,0,0,0,0,9.83407925,0.041,999999,2.319,0.155,1.578,3.655,3823.512,86,0.0,0.0,0.0,0 +9000,9000,,Block 3006,0,25,PedestrianZones,2300045.198,146524.3262,10,0,0,0.0,0,0,0,,10656,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3006.0,410470000000000.0,1000000US410470003003006,0.0,0.29,80103,0,104,44.9570352,-123.0347626,0,3,8008603006,80417,0,0,51793,0.0,0.0,0,0,,,,0,0,2.0,0.8,0,0.0,0,0.0,0,0,0,0,1,114678.25,1341.06,1,,,86,80086,1,10,14,0,4,0,0,5,300,,0,0,1,0,0,0,0,0,2.632648109,0.278,999999,4.592,0.082,2.238,4.008,5504.29,104,0.0,0.0,0.0,0 +9014,9014,,Block 1015,0,25,PedestrianZones,2300317.082,145788.1103,10,0,0,0.0,0,0,0,,10480,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,1,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1015.0,410470000000000.0,1000000US410470002001015,0.0,0.12,80103,0,150,44.9504897,-123.0310259,0,3,8008401015,80068,0,0,51811,0.0,0.0,0,0,,,,0,0,3.83,0.5,0,0.0,0,0.0,0,0,0,0,1,112782.54,1349.83,1,,,84,80084,2,23,26,0,3,0,0,6,200,,0,0,1,0,0,0,0,0,2.589128668,0.062,999999,8.0,0.255,3.742,7.552,9953.276,150,0.0,0.0,0.0,0 +9015,9015,,Block 1018,0,25,PedestrianZones,2300602.827,145677.0223,10,0,0,0.0,0,0,0,,10413,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1018.0,410470000000000.0,1000000US410470002001018,0.0,1.0,80103,0,161,44.949571,-123.0273624,0,1,8008401018,80082,0,0,51812,0.0,0.0,0,0,,,,0,0,0.0,0.5,0,0.0,0,0.0,0,0,0,0,1,112063.7,1339.45,1,,,84,80084,2,0,3,0,3,0,0,6,200,,0,0,1,0,0,0,0,0,2.572626317,0.121,999999,11.473,0.203,3.94,8.001,12463.476,161,0.0,0.0,0.0,0 +9016,9016,,Block 3026,0,25,PedestrianZones,2300279.835,144609.1785,10,0,0,0.0,0,0,0,,10286,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3026.0,410470000000000.0,1000000US410470002003026,0.0,0.0,80103,0,132,44.9398749,-123.0310298,0,3,8008003026,80068,0,0,51813,0.0,2.07,0,3,NEIGHBORHOOD PARK,,,0,0,0.0,0.0,0,0.0,0,0.0,38,0,0,0,1,110696.14,1386.35,1,,,80,80080,2,61,61,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.541231467,0.041,999999,61.335,0.729,2.218,3.675,41606.585,132,0.20644913,3.411164195,0.911503233,0 +9017,9017,,Block 2020,0,25,PedestrianZones,2300880.471,145674.8489,10,0,0,0.0,0,0,0,,13668,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,1,0,0,0,7,0,0,0,18,0,19,0,0,0,0,0,1,46,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2020.0,410470000000000.0,1000000US410470003002020,0.0,0.09,80103,0,156,44.9496296,-123.0238447,0,3,8009502020,80082,0,0,51814,0.0,0.0,0,0,,,,0,0,5.89,0.56,0,0.0,0,0.0,0,0,0,0,1,147089.22,1539.32,1,,,95,80095,1,53,58,0,5,0,0,9,300,,0,0,1,0,0,0,0,0,3.376700821,0.042,999999,9.483,0.257,4.11,8.872,11746.881,156,0.0,0.0,0.0,0 +9037,9037,,Block 6010,0,25,PedestrianZones,2301269.36,144319.2745,10,0,0,0.0,0,0,0,,7331,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6010.0,410470000000000.0,1000000US410470009006010,0.0,1.0,80103,0,163,44.9375455,-123.0183833,0,1,8010806010,80082,0,0,51853,0.0,0.0,0,0,,,,0,0,0.0,0.69,0,0.0,0,0.0,0,0,0,0,1,78892.15,1190.12,1,,,108,80108,1,0,9,0,9,0,0,13,900,,0,0,1,0,0,0,0,0,1.81111303,0.211,999999,4.686,0.126,5.253,10.52,9731.41,163,0.0,0.0,0.0,0 +9047,9047,,Block 3009,0,25,PedestrianZones,2300636.934,145435.23,10,0,0,0.0,0,0,0,,14930,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,8,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3009.0,410470000000000.0,1000000US410470002003009,0.0,0.73,80103,0,147,44.9474057,-123.0268346,0,1,8008303009,80082,0,0,51866,0.0,0.0,0,0,,,,0,0,0.32,0.86,0,0.0,0,0.0,0,0,0,0,1,160678.82,1617.91,1,,,83,80083,2,7,26,0,19,0,0,22,200,,0,0,1,0,0,0,0,0,3.68867496,0.04,999999,31.891,0.089,4.015,8.136,25616.952,147,0.0,0.0,0.0,0 +9048,9048,,Block 3003,0,25,PedestrianZones,2300714.71,145632.6306,10,0,0,0.0,0,0,0,,13939,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3003.0,410470000000000.0,1000000US410470002003003,0.0,1.0,80103,0,158,44.9492032,-123.0259276,0,1,8008303003,80082,0,0,51867,0.0,0.0,0,0,,,,0,0,0.0,0.82,0,0.0,0,0.0,0,0,0,0,1,150009.77,1563.33,1,,,83,80083,2,0,14,0,14,0,0,17,200,,0,0,1,0,0,0,0,0,3.443747495,0.0,999999,21.844,0.124,4.098,8.597,19482.547,158,0.0,0.0,0.0,0 +9049,9049,,Block 3029,0,25,PedestrianZones,2300584.083,144522.7628,10,0,0,0.0,0,0,0,,9904,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3029.0,410470000000000.0,1000000US410470002003029,0.0,0.41,80103,0,127,44.9391833,-123.0271423,0,3,8008003029,80068,0,0,51868,0.0,0.0,0,0,,,,0,0,0.91,0.64,0,0.0,0,0.0,47,0,0,0,1,106589.89,1444.66,1,,,80,80080,2,68,116,0,48,0,0,75,200,,0,0,1,0,0,0,0,0,2.446964959,0.123,999999,44.552,0.677,3.562,6.682,32789.736,127,0.205918973,3.378258534,0.905435108,0 +9056,9056,,Block 3013,0,25,PedestrianZones,2300481.636,146857.9765,10,0,0,0.0,0,0,0,,13255,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3013.0,410470000000000.0,1000000US410470003003013,0.0,1.0,80103,0,144,44.9601594,-123.029366,0,1,8008803013,80417,0,0,51875,0.0,0.0,0,0,,,,0,0,0.0,0.88,0,0.0,0,0.0,0,0,0,0,1,142644.81,1511.57,1,,,88,80088,1,0,15,0,15,0,0,17,300,,0,0,1,0,0,0,0,0,3.274671351,0.083,999999,3.987,0.127,2.59,5.143,5842.853,144,0.0,0.0,0.0,0 +9057,9057,,Block 3044,0,25,PedestrianZones,2300069.456,145992.9589,10,0,0,0.0,0,0,0,,10221,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,18,0,18,0,0,0,9999,0,0,0,0,0,0,0,1,3044.0,410470000000000.0,1000000US410470003003044,0.0,0.42,80103,0,128,44.9522625,-123.034244,0,3,8008903044,80068,0,0,51876,0.0,0.0,0,0,,,,0,0,1.22,0.89,0,0.0,0,0.0,0,0,0,0,1,109997.1,1326.4,1,,,89,80089,2,11,19,0,8,0,0,9,300,,0,0,1,0,0,0,0,0,2.525183666,0.123,999999,8.941,0.501,2.905,6.122,9640.063,128,0.0,0.0,0.0,0 +9058,9058,,Block 4031,0,25,PedestrianZones,2300559.714,146127.2166,10,0,0,0.0,0,0,0,,9822,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4031.0,410470000000000.0,1000000US410470003004031,0.0,1.0,80103,0,171,44.9536083,-123.028087,0,1,8009104031,80082,0,0,51877,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,105702.35,1300.86,1,,,91,80091,1,0,11,0,11,0,0,27,300,,0,0,1,0,0,0,0,0,2.426589846,0.186,999999,5.583,0.144,4.403,9.589,9709.992,171,0.0,0.0,0.0,0 +9059,9059,,Block 4007,0,25,PedestrianZones,2300780.885,146905.4776,10,0,0,0.0,0,0,0,,12366,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4007.0,410470000000000.0,1000000US410470003004007,0.0,0.83,80103,0,149,44.9606709,-123.0255936,0,1,8009304007,80417,0,0,51878,0.0,0.0,0,0,,,,0,0,0.12,0.59,0,0.0,0,0.0,0,0,0,0,1,133080.04,1477.3,1,,,93,80093,1,2,12,0,10,0,0,17,300,,0,0,1,0,0,0,0,0,3.055094726,0.089,999999,4.051,1.481,3.143,7.481,7380.431,149,0.0,0.0,0.0,0 +9069,9069,,Block 3003,0,25,PedestrianZones,2300167.243,147011.5794,10,0,0,0.0,0,0,0,,19396,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3003.0,410470000000000.0,1000000US410470003003003,0.0,0.0,80103,0,96,44.9614524,-123.0334101,0,3,8008603003,80417,0,0,51889,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,208739.05,1886.84,1,,,86,80086,1,16,16,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,4.791984904,0.348,999999,4.6,0.136,1.845,3.317,5066.688,96,0.0,0.0,0.0,0 +9074,9074,,Block 2011,0,25,PedestrianZones,2301445.461,145370.2844,10,0,0,0.0,0,0,0,,12753,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2011.0,410470000000000.0,1000000US410470006002011,0.0,0.94,80103,0,135,44.9470486,-123.0165679,0,1,8010202011,80082,0,0,51900,0.0,0.0,0,0,,,,0,0,0.03,0.38,0,0.0,0,0.0,0,0,0,0,1,137244.48,1474.6,1,,,102,80102,1,1,16,0,15,0,0,39,600,,0,0,1,0,0,0,0,0,3.150696887,0.132,999999,2.038,0.141,4.276,9.46,7358.968,135,0.0,0.0,0.0,0 +9075,9075,,Block 3021,0,25,PedestrianZones,2301379.591,144608.5987,10,0,0,0.0,0,0,0,,19029,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,29,1,0,0,0,0,0,0,0,0,0,5,0,17,63,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3021.0,410470000000000.0,1000000US410470006003021,0.0,0.23,80103,0,147,44.9401788,-123.0171015,0,3,8010503021,80082,0,0,51901,0.0,0.0,0,0,,,,0,0,2.15,0.65,0,0.0,0,0.0,0,0,0,0,1,204791.03,1927.91,1,,,105,80105,1,43,56,0,13,0,0,20,600,,0,0,1,0,0,0,0,0,4.701351029,0.06,999999,4.493,0.118,5.034,9.988,9267.936,147,0.0,0.0,0.0,0 +9076,9076,,Block 3002,0,25,PedestrianZones,2301802.263,144871.8195,10,0,0,0.0,0,0,0,,7353,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3002.0,410470000000000.0,1000000US410470006003002,0.0,1.0,80103,0,136,44.9426649,-123.0118521,0,1,8010503002,80082,0,0,51902,0.0,0.0,0,0,,,,0,0,0.0,0.61,0,0.0,0,0.0,0,0,0,0,1,79126.77,1555.55,1,,,105,80105,1,0,14,0,14,0,0,23,600,,0,0,1,0,0,0,0,0,1.816499121,0.196,999999,2.39,0.087,4.183,9.22,7430.223,136,0.0,0.0,0.0,0 +9077,9077,,Block 6023,0,25,PedestrianZones,2301311.202,144066.1329,10,0,0,0.0,0,0,0,,17710,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,42,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6023.0,410470000000000.0,1000000US410470009006023,0.0,0.31,80103,0,168,44.9352802,-123.0177535,0,3,8010806023,80082,0,0,51903,0.0,0.0,0,0,,,,0,0,1.48,0.68,0,0.0,0,0.0,0,0,0,0,1,190595.3,1730.75,1,,,108,80108,1,37,54,0,17,0,0,25,900,,0,0,1,0,0,0,0,0,4.375462245,0.216,999999,4.994,0.161,4.575,8.731,8783.878,168,0.0,0.0,0.0,0 +9235,9235,,Block 2020,0,25,PedestrianZones,2299305.155,145084.8852,10,0,0,0.06,0,0,0,,0,28975,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2020.0,410470000000000.0,1000000US410470002002020,0.0,0.0,80103,0,103,44.9438784,-123.0435634,0,1,8006102020,80068,0,0,52148,0.0,0.06,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,1,1,311830.81,2394.2,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,7.158644052,0.544,999999,4.024,0.184,0.214,0.306,2771.006,103,0.0,0.0,0.0,0 +9236,9236,,Block 2038,0,25,PedestrianZones,2299499.875,144983.7311,10,0,0,0.0,0,0,0,,4991,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2038.0,410470000000000.0,1000000US410470002002038,0.0,0.0,80103,0,108,44.9430237,-123.0410568,0,1,8006102038,80068,0,0,52149,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,53715.73,1853.87,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,1.233142388,0.32,999999,23.467,2.848,1.466,2.418,16566.462,108,0.0,0.0,0.0,0 +9237,9237,,Block 2047,0,25,PedestrianZones,2299578.449,144608.7799,10,0,0,0.0,0,0,0,,16126,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,9,125,22,130,0,99,67,0,908,1,0,0,31,0,60,1803,98,72,0,0,0,9999,0,0,0,0,0,0,0,1,2047.0,410470000000000.0,1000000US410470002002047,0.0,0.0,80103,0,98,44.9396733,-123.0399123,0,3,8006702047,80068,0,0,52150,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,2.93,416,0,0,0,1,173540.12,1672.26,1,,,67,80067,2,625,625,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.983929406,0.106,999999,33.456,1.761,2.519,4.049,24003.461,98,0.202882845,3.450315867,0.91357801,0 +9238,9238,,Block 1026,0,25,PedestrianZones,2299933.454,145538.7702,10,0,0,0.0,0,0,0,,36967,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,335,0,0,12,0,0,0,2,0,51,381,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1026.0,410470000000000.0,1000000US410470002001026,0.0,0.0,80103,0,121,44.9481387,-123.0357862,0,3,8008501026,80068,0,0,52151,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,17,0,0,0,1,397831.25,3069.87,1,,,85,80085,2,302,302,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,9.132940836,0.267,999999,14.094,2.015,1.377,2.71,10755.075,121,0.0,0.0,0.0,0 +9239,9239,,Block 1023,0,25,PedestrianZones,2300088.722,145673.0772,10,0,0,0.0,0,0,0,,60761,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,17,3,0,0,0,0,31,0,0,0,6,0,22,177,0,15,0,0,0,9999,0,0,0,0,0,0,0,1,1023.0,410470000000000.0,1000000US410470002001023,0.0,0.19,80103,0,138,44.9493906,-123.0338729,0,3,8008501023,80068,0,0,52152,0.0,0.0,0,0,,,,0,0,1.55,0.37,0,0.0,0,0.0,0,0,0,0,1,653899.41,3624.58,1,,,85,80085,2,141,175,0,34,0,0,91,200,,0,0,1,0,0,0,0,0,15.01145168,0.107,999999,10.568,0.584,3.056,6.485,10914.386,138,0.0,0.0,0.0,0 +9240,9240,,Block 1028,0,25,PedestrianZones,2300110.497,145527.8483,10,0,0,0.0,0,0,0,,7922,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,19,0,0,0,0,21,0,3,0,0,0,0,0,0,45,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1028.0,410470000000000.0,1000000US410470002001028,0.0,0.0,80103,0,138,44.9480905,-123.0335393,0,3,8008501028,80068,0,0,52153,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,85256.48,1679.08,1,,,85,80085,2,35,35,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,1.95721781,0.04,999999,16.475,1.134,3.035,6.299,14575.404,138,0.0,0.0,0.0,0 +9241,9241,,Block 2025,0,25,PedestrianZones,2299942.815,145162.5166,10,0,0,0.0,0,0,0,,17575,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2025.0,410470000000000.0,1000000US410470002002025,0.0,0.0,80103,0,128,44.944757,-123.035518,0,1,8006502025,80068,0,0,52154,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,15,1.59,1117,0,0,0,1,189140.47,1740.49,1,,,65,80065,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.34206399,0.056,999999,25.824,4.1,2.325,3.832,18979.48,128,0.203868475,3.442207733,0.912884261,0 +9242,9242,,Block 2026,0,25,PedestrianZones,2300070.301,145113.9652,10,0,0,0.0,0,0,0,,18114,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,31,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2026.0,410470000000000.0,1000000US410470002002026,0.0,0.07,80103,0,137,44.9443563,-123.033884,0,3,8006502026,80068,0,0,52155,0.0,0.0,0,0,,,,0,0,8.83,0.67,0,0.0,0,0.0,47,0,0,0,1,194941.1,1765.64,1,,,65,80065,2,53,57,0,4,0,0,6,200,,0,0,1,0,0,0,0,0,4.475227929,0.123,999999,40.167,2.636,2.223,3.997,28265.514,137,0.204556338,3.436593081,0.912881643,0 +9243,9243,,Block 2050,0,25,PedestrianZones,2299832.665,144511.6486,10,0,0,0.0,0,0,0,,15633,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,5,81,0,3,0,9,3,0,24,0,0,0,0,0,0,193,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2050.0,410470000000000.0,1000000US410470002002050,0.0,0.01,80103,0,117,44.9388714,-123.0366542,0,3,8006702050,80068,0,0,52156,0.0,0.0,0,0,,,,0,0,96.5,0.5,0,1.5,18,0.0,71,0,0,0,1,168241.69,1646.55,1,,,67,80067,2,193,194,0,1,0,0,2,200,,0,0,1,0,0,0,0,0,3.862294436,0.127,999999,36.193,2.441,1.829,2.876,25004.185,117,0.203989163,3.438955554,0.913152119,0 +9244,9244,,Block 3041,0,25,PedestrianZones,2299536.081,144500.3267,10,0,0,0.0,0,0,0,,16499,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3041.0,410470000000000.0,1000000US410470002003041,0.0,0.0,80103,0,92,44.9386858,-123.0404057,0,3,8007203041,80068,0,0,52157,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,7,0,0,0,1,177562.24,1691.44,1,,,72,80072,2,134,134,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.0762645,0.107,999999,35.581,2.837,2.054,3.285,24873.987,92,0.202622187,3.444490908,0.912266245,0 +9258,9258,,Block 1026,0,25,PedestrianZones,2301203.997,146189.4019,10,0,0,0.0,0,0,0,,9410,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1026.0,410470000000000.0,1000000US410470003001026,0.0,0.81,80103,0,157,44.9543488,-123.01995,0,1,8009701026,80082,0,0,52195,0.0,0.0,0,0,,,,0,0,0.09,0.35,0,0.0,0,0.0,0,0,0,0,1,101263.27,1316.89,1,,,97,80097,1,7,36,0,29,0,0,82,300,,0,0,1,0,0,0,0,0,2.324682676,0.112,999999,4.54,0.184,4.037,9.224,8808.968,157,0.0,0.0,0.0,0 +9267,9267,,Block 1015,0,25,PedestrianZones,2301477.891,145995.9157,10,0,0,0.0,0,0,0,,14854,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,5,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1015.0,410470000000000.0,1000000US410470006001015,0.0,0.48,80103,0,137,44.9526852,-123.016404,0,3,8009801015,80082,0,0,52204,0.0,0.0,0,0,,,,0,0,0.5,0.47,0,0.0,0,0.0,0,0,0,0,1,159855.79,1702.43,1,,,98,80098,1,16,31,0,15,0,0,32,600,,0,0,1,0,0,0,0,0,3.669780681,0.268,999999,4.704,0.26,3.707,8.547,8480.937,137,0.0,0.0,0.0,0 +9271,9271,,Block 3047,0,25,PedestrianZones,2299678.948,144124.3943,10,0,0,2.44,0,0,0,,64115,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,1,0,8,0,1323,0,0,0,0,0,0,4,0,0,1077,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3047.0,410470000000000.0,1000000US410470002003047,8.81,0.02,80135,0,102,44.9353447,-123.0384468,0,3,8007503047,80068,0,0,52216,0.0,2.44,0,3,LINEAR PARK,DEVELOPED,,0,0,52.33,0.83,0,0.0,0,0.0,40,0,0,0,1,689992.06,3963.77,1,,,75,80075,2,942,957,0,15,0,0,18,200,,0,0,1,0,0,0,0,0,15.84002406,0.141,999999,69.708,1.367,2.043,3.229,46679.696,102,0.0,0.0,0.0,0 +9276,9276,,Block 3060,0,25,PedestrianZones,2299763.267,143829.8715,10,0,0,0.96,0,0,0,,50457,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3060.0,410470000000000.0,1000000US410470002003060,0.0,0.0,80135,0,101,44.9327193,-123.0372618,0,1,8007603060,80068,0,0,52221,0.0,0.96,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,26,0,0,0,1,543004.88,3284.43,1,,,76,80076,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,12.46566575,0.167,999999,39.698,0.394,1.251,1.982,26675.041,101,0.203575593,3.430336985,0.911427691,0 +9277,9277,,Block 3036,0,25,PedestrianZones,2300044.706,144304.8037,10,0,0,0.0,0,0,0,,14868,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3036.0,410470000000000.0,1000000US410470002003036,0.0,0.0,80103,0,134,44.9370708,-123.0338866,0,3,8007903036,80068,0,0,52222,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,19,0,0,0,1,160005.84,1610.79,1,,,79,80079,2,3,3,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.673225389,0.184,999999,10.194,0.0,0.463,0.537,6868.315,134,0.203971933,3.409631051,0.908022956,0 +9285,9285,,Block 3038,0,25,PedestrianZones,2299898.594,144315.0492,10,0,0,0.0,0,0,0,,14607,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,106,0,120,0,0,63,0,0,0,131,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3038.0,410470000000000.0,1000000US410470002003038,0.0,0.0,80103,0,128,44.9371217,-123.0357411,0,3,8007903038,80068,0,0,52236,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,5,0,0,0,1,157191.63,2425.34,1,,,79,80079,2,190,190,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.608620115,0.0,999999,48.0,1.794,2.345,3.689,33081.088,128,0.203147683,3.41766963,0.908220551,0 +9286,9286,,Block 2024,0,25,PedestrianZones,2299815.995,145210.1747,10,0,0,0.0,0,0,0,,17956,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,70,0,0,88,0,0,0,242,0,9999,0,0,0,0,0,0,0,1,2024.0,410470000000000.0,1000000US410470002002024,0.0,0.0,80103,0,121,44.9451499,-123.0371432,0,3,8006402024,80068,0,0,52238,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,30,0,0,0,1,193243.76,1758.72,1,,,64,80064,2,69,69,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.436262272,0.048,999999,34.092,2.405,2.078,3.818,24262.438,121,0.203255027,3.446284977,0.912729563,0 +9288,9288,,Block 1002,0,25,PedestrianZones,2302177.218,145936.2977,10,0,0,0.0,0,0,0,,27697,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1002.0,410470000000000.0,1000000US410470006001002,0.0,0.88,80103,0,90,44.9523446,-123.0075218,0,1,8009901002,80377,0,0,52242,0.0,0.0,0,0,,,,0,0,0.06,0.44,0,0.0,0,0.0,0,0,0,0,1,298064.35,2910.52,1,,,99,80099,1,4,32,0,28,0,0,64,600,,0,0,1,0,0,0,0,0,6.842609987,0.195,999999,3.432,0.136,2.785,6.434,6313.815,90,0.0,0.0,0.0,0 +9299,9299,,Block 1014,0,25,PedestrianZones,2301639.281,145931.7281,10,0,0,0.0,0,0,0,,13735,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,1014.0,410470000000000.0,1000000US410470006001014,0.0,0.95,80103,0,121,44.9521531,-123.0143343,0,1,8009801014,80082,0,0,52262,0.0,0.0,0,0,,,,0,0,0.02,0.42,0,0.0,0,0.0,0,0,0,0,1,147809.69,1641.04,1,,,98,80098,1,1,21,0,20,0,0,48,600,,0,0,1,0,0,0,0,0,3.393240676,0.122,999999,4.322,0.146,3.481,8.055,7921.317,121,0.0,0.0,0.0,0 +9361,9361,,Block 3050,0,25,PedestrianZones,2299318.309,143952.1436,10,0,0,0.0,0,0,0,,15540,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,134,42,19,0,3,50,0,257,7,0,0,0,0,58,422,9,20,0,0,0,9999,0,0,0,0,0,0,0,1,3050.0,410470000000000.0,1000000US410470002003050,0.0,0.03,80135,0,79,44.9336933,-123.042945,0,3,8007103050,80068,0,0,52337,0.0,0.0,0,0,,,,0,0,33.6,0.87,0,0.0,0,0.0,5,0,0,0,1,167234.68,1633.63,1,,,71,80071,2,504,517,0,13,0,0,15,200,,0,0,1,0,0,0,0,0,3.839176655,0.037,999999,32.571,0.447,2.255,4.338,23621.843,79,0.0,0.0,0.0,0 +9363,9363,,Block 3049,0,25,PedestrianZones,2299450.087,143907.1204,10,0,0,0.0,0,0,0,,14194,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3049.0,410470000000000.0,1000000US410470002003049,0.0,0.57,80135,0,85,44.9333256,-123.0412584,0,2,8007403049,80068,0,0,52339,0.0,0.0,0,0,,,,0,0,0.63,0.84,0,0.0,0,0.0,0,0,0,0,1,152749.15,1550.09,1,,,74,80074,2,12,28,0,16,0,0,19,200,,0,0,1,0,0,0,0,0,3.506634878,0.118,999999,34.405,0.399,2.083,3.859,24489.155,85,0.0,0.0,0.0,0 +9376,9376,,Block 3048,0,25,PedestrianZones,2299574.547,143856.3941,10,0,0,0.0,0,0,0,,14731,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3048.0,410470000000000.0,1000000US410470002003048,0.0,0.72,80135,0,93,44.9329046,-123.0396621,0,1,8007403048,80068,0,0,52352,0.0,0.0,0,0,,,,0,0,0.33,0.87,0,0.0,0,0.0,5,0,0,0,1,158527.57,1619.15,1,,,74,80074,2,5,18,0,13,0,0,15,200,,0,0,1,0,0,0,0,0,3.639288928,0.137,999999,38.579,0.444,2.391,4.431,27526.741,93,0.0,0.0,0.0,0 +9379,9379,,Block 3039,0,25,PedestrianZones,2299788.967,144401.7043,10,0,0,0.0,0,0,0,,16308,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,19,0,37,0,46,1,0,15,0,0,0,20,0,0,207,7,0,0,0,0,9999,0,0,0,0,0,0,0,1,3039.0,410470000000000.0,1000000US410470002003039,0.0,0.14,80103,0,113,44.9378702,-123.0371639,0,3,8007203039,80068,0,0,52355,0.0,0.0,0,0,,,,0,0,4.61,0.75,0,1.5,18,0.0,50,0,0,0,1,175503.81,1677.9,1,,,72,80072,2,166,193,0,27,0,0,36,200,,0,0,1,0,0,0,0,0,4.029009535,0.033,999999,60.761,1.271,2.026,3.178,40921.284,113,0.203457167,3.432717,0.911401689,0 +9380,9380,,Block 3053,0,25,PedestrianZones,2299855.855,144132.9987,10,0,0,0.49,0,0,0,,43189,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,45,32,0,0,0,0,0,0,0,0,138,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3053.0,410470000000000.0,1000000US410470002003053,157.36,0.35,80135,0,116,44.9354721,-123.0362099,0,3,8007903053,80068,0,0,52356,0.0,0.49,0,3,LINEAR PARK,DEVELOPED,,0,0,1.1,0.6,0,0.0,0,0.0,32,0,0,0,1,464791.91,3202.47,1,,,79,80079,2,113,175,0,62,0,0,103,200,,0,0,1,0,0,0,0,0,10.67014471,0.117,999999,68.397,0.669,0.83,1.325,44621.746,116,0.202368082,3.40550889,0.905063224,0 +9381,9381,,Block 3052,0,25,PedestrianZones,2299863.897,143940.1493,10,0,0,2.8,0,0,0,,36028,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,1,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,105,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3052.0,410470000000000.0,1000000US410470002003052,0.0,0.0,80135,0,103,44.9337397,-123.0360314,0,3,8007603052,80068,0,0,52357,0.0,2.8,0,3,LINEAR PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,6,0,0,0,1,387729.76,2708.68,1,,,76,80076,2,134,134,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,8.90104255,0.067,999999,56.104,0.41,1.161,1.856,37094.441,103,0.202516248,3.403958835,0.90524088,0 +9382,9382,,Block 3037,0,25,PedestrianZones,2299989.991,144240.8862,10,0,0,0.0,0,0,0,,22952,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3037.0,410470000000000.0,1000000US410470002003037,0.0,1.0,80103,0,125,44.9364804,-123.0345541,0,1,8007903037,80068,0,0,52358,0.0,0.0,0,0,,,,0,0,0.0,1.0,0,0.0,0,0.0,19,0,0,0,1,247001.06,2877.55,1,,,79,80079,2,0,1,0,1,0,0,1,200,,0,0,1,0,0,0,0,0,5.670359177,0.184,999999,10.194,0.0,0.463,0.537,6868.315,125,0.20337536,3.411907968,0.907577273,0 +9383,9383,,Block 3031,0,25,PedestrianZones,2300291.224,144461.3826,10,0,0,0.0,0,0,0,,62942,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,1,0,0,0,0,0,0,354,0,0,924,0,0,0,2,0,1,1035,0,30,0,0,0,9999,0,0,0,0,0,0,0,1,3031.0,410470000000000.0,1000000US410470002003031,0.97,0.0,80103,0,128,44.9385487,-123.0308269,0,3,8008003031,80068,0,0,52359,0.0,11.87,0,3,NEIGHBORHOOD PARK,,,0,0,330.5,1.0,0,0.8,0,0.0,175,0,0,0,1,677368.08,3988.08,1,,,80,80080,2,661,663,0,2,0,0,2,200,,0,0,1,0,0,0,0,0,15.55021773,0.061,999999,46.593,0.698,2.483,4.142,32470.105,128,0.205000742,3.405701477,0.908650839,0 +9384,9384,,Block 3032,0,25,PedestrianZones,2300086.917,144409.5718,10,0,0,0.0,0,0,0,,16397,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,19,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3032.0,410470000000000.0,1000000US410470002003032,0.0,0.0,80103,0,143,44.9380251,-123.0333937,0,3,8007903032,80068,0,0,52360,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,46,0,0,0,1,176458.62,1686.79,1,,,79,80079,2,11,11,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.050928893,0.158,999999,68.427,0.006,1.668,2.845,45614.308,143,0.204698694,3.415278674,0.909958826,0 +9385,9385,,Block 2054,0,25,PedestrianZones,2300180.933,144647.5796,10,0,0,0.0,0,0,0,,18459,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80106,0,0,1,0,0,0,0,13,0,4,6,0,4,0,0,0,10,0,0,50,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2054.0,410470000000000.0,1000000US410470002002054,0.0,0.0,80103,0,130,44.9401924,-123.0322976,0,3,8006802054,80068,0,0,52361,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,63,0,0,0,1,198651.0,1783.97,1,,,68,80068,2,57,57,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.560395428,0.044,999999,43.626,3.215,1.304,2.006,29204.772,130,0.206051072,3.422873265,0.912931694,0 +9386,9386,,Block 3061,0,25,PedestrianZones,2299938.308,143707.7065,10,0,0,0.0,0,0,0,,10920,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,1,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,52,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3061.0,410470000000000.0,1000000US410470002003061,0.0,0.0,80135,0,118,44.9316699,-123.0349967,0,3,8007603061,80068,0,0,52362,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,117522.06,1494.42,1,,,76,80076,2,41,41,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.697932938,0.096,999999,36.989,0.333,1.169,2.091,25011.317,118,0.0,0.0,0.0,0 +9387,9387,,Block 3054,0,25,PedestrianZones,2299978.472,144091.3755,10,0,0,0.0,0,0,0,,11422,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3054.0,410470000000000.0,1000000US410470002003054,0.0,1.0,80103,0,117,44.9351323,-123.0346406,0,1,8007903054,80068,0,0,52363,0.0,0.0,0,0,,,,0,0,0.0,1.0,0,0.0,0,0.0,8,0,0,0,1,122916.93,1426.83,1,,,79,80079,2,0,2,0,2,0,0,2,200,,0,0,1,0,0,0,0,0,2.821781965,0.165,999999,50.785,0.0,0.671,1.003,33144.496,117,0.202612706,3.394795329,0.903585987,0 +9388,9388,,Block 3059,0,25,PedestrianZones,2300164.018,143760.9345,10,0,0,0.0,0,0,0,,17346,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3059.0,410470000000000.0,1000000US410470002003059,0.0,0.0,80135,0,128,44.9322124,-123.0321597,0,1,8007603059,80068,0,0,52364,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,186677.66,2148.8,1,,,76,80076,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.285525687,0.131,999999,35.81,0.006,0.866,1.654,23977.414,128,0.0,0.0,0.0,0 +9417,9417,,Block 2005,0,25,PedestrianZones,2308716.352,140369.0205,10,0,0,0.0,0,0,0,,1647939,0,2,410470000000000.0,0,0,Outside CL,0,47,,0,0,4,1,1,9999,0,80294,0,0,0,0,0,1,2,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,22005.0,410470000000000.0,1000000US410470027022005,0.0,0.95,80309,0,13,44.9040615,-122.9225695,0,1,8009622005,80299,0,0,52394,0.0,0.0,0,0,,,,0,0,0.02,0.35,0,0.0,0,0.0,0,0,0,0,1,17734898.1,22089.97,1,,,96,80096,1,6,130,0,124,0,0,351,2702,,0,0,0,0,0,0,0,0,407.1368784,999999.0,999999,0.02,0.0,0.305,0.862,564.331,13,0.0,0.0,0.0,0 +9427,9427,,Block 2006,0,25,PedestrianZones,2309342.351,140629.1854,10,0,0,0.0,0,0,0,,83450,0,2,410470000000000.0,0,0,Outside CL,0,47,,0,0,4,1,1,9999,0,80294,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,9999,0,0,0,0,0,0,0,4,22006.0,410470000000000.0,1000000US410470027022006,0.0,0.82,80309,0,18,44.9065704,-122.9147445,0,1,8009622006,80299,0,0,52407,0.0,0.0,0,0,,,,0,0,0.09,0.39,0,0.0,0,0.0,0,0,0,0,1,898078.91,5134.03,1,,,96,80096,1,2,11,0,9,0,0,23,2702,,0,0,0,0,0,0,0,0,20.61703664,999999.0,999999,0.049,0.0,0.437,1.116,745.015,18,0.0,0.0,0.0,0 +9477,9477,,Block 1032,0,25,PedestrianZones,2302339.2,145675.1533,10,0,0,0.0,0,0,0,,12309,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1032.0,410470000000000.0,1000000US410470006001032,0.0,1.0,80103,0,113,44.9500408,-123.0053673,0,1,8009901032,80377,0,0,57882,0.0,0.0,0,0,,,,0,0,0.0,0.55,0,0.0,0,0.0,0,0,0,0,1,132462.83,1517.74,1,,,99,80099,1,0,12,0,12,0,0,22,600,,0,0,1,0,0,0,0,0,3.040925374,0.017,999999,1.57,0.162,3.584,8.786,6627.93,113,0.0,0.0,0.0,0 +9489,9489,,Block 1028,0,25,PedestrianZones,2301726.519,145785.8947,10,0,0,0.0,0,0,0,,4778,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1028.0,410470000000000.0,1000000US410470006001028,0.0,1.0,80103,0,124,44.9508657,-123.0131717,0,1,8009801028,80082,0,0,57905,0.0,0.0,0,0,,,,0,0,0.0,1.0,0,0.0,0,0.0,0,0,0,0,1,51416.12,1037.75,1,,,98,80098,1,0,1,0,1,0,0,1,600,,0,0,1,0,0,0,0,0,1.180350642,0.163,999999,2.869,0.183,3.778,8.71,7410.949,124,0.0,0.0,0.0,0 +9498,9498,,Block 2021,0,25,PedestrianZones,2299176.262,144465.9693,10,0,0,0.79,0,0,0,,0,41462,2,410470000000000.0,0,2,Salem,0,47,,0,0,5,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2021.0,410470000000000.0,1000000US410470002002021,0.0,0.0,80135,0,63,44.9416676,-123.0449529,0,1,8006102021,80068,0,0,57915,0.0,0.79,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,1,1,446210.83,8050.93,1,,,61,80061,1,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,10.24358198,0.511,999999,2.054,0.0,0.0,0.0,1314.583,63,0.0,0.0,0.0,0 +9540,9540,,Block 2018,0,25,PedestrianZones,2309559.358,138564.1482,10,0,0,0.0,0,0,0,,87709,0,2,410470000000000.0,0,0,Outside CL,0,47,,0,0,4,1,1,9999,0,80295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,22018.0,410470000000000.0,1000000US410470027022018,0.0,0.83,80309,0,11,44.888053,-122.9112174,0,1,8009622018,80299,0,0,58030,0.0,0.0,0,0,,,,0,0,0.08,0.38,0,0.0,0,0.0,0,0,0,0,1,943918.42,5332.61,1,,,96,80096,1,3,18,0,15,0,0,39,2702,,0,0,0,0,0,0,0,0,21.66936597,999999.0,999999,0.0,0.0,0.304,0.835,534.482,11,0.0,0.0,0.0,0 +9543,9543,,Block 6007,0,25,PedestrianZones,2300863.11,144517.6609,10,0,0,0.0,0,0,0,,15042,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6007.0,410470000000000.0,1000000US410470009006007,0.0,0.97,80103,0,143,44.9392159,-123.0236066,0,1,8010606007,80068,0,0,58069,0.0,0.0,0,0,,,,0,0,0.02,0.48,0,0.0,0,0.0,18,0,0,0,1,161881.41,1614.23,1,,,106,80106,1,3,88,0,85,0,0,178,900,,0,0,1,0,0,0,0,0,3.716282498,0.015,999999,38.363,0.47,3.597,6.823,28918.86,143,0.204265909,3.344101976,0.89738359,0 +9544,9544,,Block 6006,0,25,PedestrianZones,2301064.484,144413.9548,10,0,0,0.0,0,0,0,,24942,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6006.0,410470000000000.0,1000000US410470009006006,0.0,0.71,80103,0,158,44.9379848,-123.019913,0,1,8010606006,80082,0,0,58070,0.0,0.0,0,0,,,,0,0,0.28,0.68,0,0.0,0,0.0,0,0,0,0,1,268417.4,3198.31,1,,,106,80106,1,7,24,0,17,0,0,25,900,,0,0,1,0,0,0,0,0,6.162010079,0.218,999999,22.417,0.487,4.102,7.655,19245.713,158,0.0,0.0,0.0,0 +9545,9545,,Block 3034,0,25,PedestrianZones,2300554.295,144358.7338,10,0,0,0.0,0,0,0,,12535,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,259,2,0,0,0,0,9999,0,0,0,0,0,0,0,1,3034.0,410470000000000.0,1000000US410470002003034,0.0,0.0,80103,0,141,44.9376995,-123.0274546,0,3,8008003034,80068,0,0,58071,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,79,0,0,0,1,134903.94,1494.85,1,,,80,80080,2,359,359,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.09696561,0.039,999999,43.593,0.502,3.508,6.893,32311.314,141,0.205147395,3.368994128,0.90272788,0 +9547,9547,,Block 3064,0,25,PedestrianZones,2300105.527,143666.3963,10,0,0,0.0,0,0,0,,30135,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3064.0,410470000000000.0,1000000US410470002003064,0.0,0.0,80135,0,129,44.9313455,-123.0328629,0,1,8007603064,80068,0,0,58074,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,324302.73,2263.34,1,,,76,80076,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,7.444959665,0.14,999999,33.739,0.061,0.879,1.794,22741.465,129,0.0,0.0,0.0,0 +9548,9548,,Block 3062,0,25,PedestrianZones,2300294.32,143695.7308,10,0,0,0.0,0,0,0,,13025,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,1,0,0,0,0,0,0,65,8,0,0,0,0,0,0,0,0,38,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3062.0,410470000000000.0,1000000US410470002003062,0.0,0.0,80135,0,138,44.9316626,-123.0304839,0,3,8007703062,80068,0,0,58075,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,140174.59,1497.23,1,,,77,80077,2,61,61,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.217962978,0.053,999999,44.275,0.114,0.884,2.09,29674.025,138,0.0,0.0,0.0,0 +9553,9553,,Block 6016,0,25,PedestrianZones,2300656.147,144318.4798,10,0,0,0.0,0,0,0,,16686,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,1,0,0,0,0,0,0,213,0,0,4,0,0,0,0,0,0,268,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6016.0,410470000000000.0,1000000US410470009006016,0.0,0.0,80103,0,145,44.9373661,-123.0261488,0,3,8010606016,80068,0,0,58081,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,140,0,0,0,1,179573.36,1695.74,1,,,106,80106,1,419,419,0,0,0,0,0,900,,0,0,1,0,0,0,0,0,4.122433518,0.098,999999,26.746,0.524,4.031,7.77,22090.473,145,0.204630259,3.356698719,0.899936688,0 +9554,9554,,Block 4006,0,25,PedestrianZones,2300611.953,144204.8659,10,0,0,0.0,0,0,0,,13666,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,4,37,0,0,0,374,0,0,0,0,0,0,0,0,0,286,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,4006.0,410470000000000.0,1000000US410470009004006,0.0,0.0,80103,0,149,44.9363317,-123.0266634,0,3,8011004006,80068,0,0,58082,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,62,0,0,0,1,147073.46,1535.79,1,,,110,80110,1,345,345,0,0,0,0,0,900,,0,0,1,0,0,0,0,0,3.376339181,0.113,999999,27.379,0.524,3.931,7.631,22406.661,149,0.204078984,3.354212899,0.898657702,0 +9555,9555,,Block 4005,0,25,PedestrianZones,2300720.782,144160.3179,10,0,0,0.0,0,0,0,,12980,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,68,0,86,0,0,0,0,0,0,0,0,0,195,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,4005.0,410470000000000.0,1000000US410470009004005,0.0,0.0,80103,0,157,44.9359616,-123.0252676,0,3,8011004005,80068,0,0,58083,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,319,0,0,0,1,139686.34,1521.6,1,,,110,80110,1,283,283,0,0,0,0,0,900,,0,0,1,0,0,0,0,0,3.206754321,0.033,999999,23.382,0.477,4.139,7.84,19982.088,157,0.203501249,3.340452424,0.89551405,0 +9566,9566,,Block 2004,0,25,PedestrianZones,2299743.29,145430.6483,10,0,0,0.0,0,0,0,,4397,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2004.0,410470000000000.0,1000000US410470002002004,0.0,0.0,80103,0,118,44.9471125,-123.0381518,0,3,8006102004,80068,0,0,58104,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,47322.98,1059.63,1,,,61,80061,2,4,4,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,1.086385099,0.389,999999,9.344,0.612,0.426,0.667,6407.304,118,0.0,0.0,0.0,0 +9577,9577,,Block 2057,0,25,PedestrianZones,2299947.583,144431.2961,10,0,0,0.0,0,0,0,,7396,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2057.0,410470000000000.0,1000000US410470002002057,0.0,0.0,80103,0,135,44.9381811,-123.0351669,0,1,8006702057,80068,0,0,58115,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,12,0,0,0,1,79589.31,1251.3,1,,,67,80067,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,1.827117539,0.143,999999,69.503,0.0,1.025,1.533,45462.993,135,0.204210691,3.426894554,0.911393934,0 +9601,9601,,Block 2053,0,25,PedestrianZones,2300052.97,144696.3818,10,0,0,0.0,0,0,0,,18407,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,55,3,0,0,0,0,0,0,0,0,0,219,0,0,208,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2053.0,410470000000000.0,1000000US410470002002053,0.0,0.01,80103,0,129,44.9405953,-123.0339376,0,3,8006802053,80068,0,0,58144,0.0,0.0,0,0,,,,0,0,96.5,0.5,0,0.0,0,0.0,60,0,0,0,1,198095.83,1780.55,1,,,68,80068,2,193,194,0,1,0,0,2,200,,0,0,1,0,0,0,0,0,4.547650429,0.046,999999,40.794,2.114,1.979,3.227,28173.976,129,0.20538065,3.435405706,0.914174555,0 +9622,9622,,Block 1007,0,25,PedestrianZones,2302008.236,145918.8009,10,0,0,0.0,0,0,0,,17551,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1007.0,410470000000000.0,1000000US410470006001007,0.0,1.0,80103,0,95,44.95214,-123.0096555,0,1,8009901007,80082,0,0,58194,0.0,0.0,0,0,,,,0,0,0.0,0.42,0,0.0,0,0.0,0,0,0,0,1,188877.15,1786.03,1,,,99,80099,1,0,19,0,19,0,0,45,600,,0,0,1,0,0,0,0,0,4.336018985,0.127,999999,3.613,0.149,2.925,6.636,6559.208,95,0.0,0.0,0.0,0 +9630,9630,,Block 3057,0,25,PedestrianZones,2300185.722,143867.0689,10,0,0,0.0,0,0,0,,53729,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,19,0,0,0,0,297,0,11,0,0,0,0,0,0,377,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3057.0,410470000000000.0,1000000US410470002003057,0.0,0.0,80135,0,127,44.9331732,-123.031927,0,3,8007703057,80068,0,0,58211,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,578212.85,3741.81,1,,,77,80077,2,434,434,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,13.27392891,0.17,999999,36.647,0.0,0.813,1.608,24483.206,127,0.0,0.0,0.0,0 +9631,9631,,Block 4046,0,25,PedestrianZones,2300353.921,145880.9794,10,0,0,0.0,0,0,0,,10895,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4046.0,410470000000000.0,1000000US410470003004046,0.0,0.0,80103,0,153,44.9513355,-123.0305962,0,3,8009004046,80068,0,0,58212,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,117248.2,1373.93,1,,,90,80090,1,15,15,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,2.691646031,0.063,999999,7.566,0.237,3.738,7.746,9799.842,153,0.0,0.0,0.0,0 +9657,9657,,Block 3007,0,25,PedestrianZones,2300864.443,145356.5308,10,0,0,0.0,0,0,0,,8338,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3007.0,410470000000000.0,1000000US410470002003007,0.0,0.78,80103,0,145,44.9467618,-123.0239217,0,1,8008303007,80082,0,0,59377,0.0,0.0,0,0,,,,0,0,0.22,0.78,0,0.0,0,0.0,0,0,0,0,1,89731.88,1255.78,1,,,83,80083,2,2,9,0,7,0,0,9,200,,0,0,1,0,0,0,0,0,2.059958674,0.133,999999,21.853,0.053,4.288,9.136,19833.239,145,0.0,0.0,0.0,0 +9672,9672,,Block 1003,0,25,PedestrianZones,2299991.925,146349.9433,10,0,0,0.0,0,0,0,,9392,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1003.0,410470000000000.0,1000000US410470002001003,0.0,0.0,80103,0,101,44.9554516,-123.0353681,0,1,8008501003,80068,0,0,59410,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,101079.15,1235.85,1,,,85,80085,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.320456014,0.361,999999,4.191,0.083,2.465,4.535,5584.623,101,0.0,0.0,0.0,0 +9682,9682,,Block 6000,0,25,PedestrianZones,2301675.979,144454.1943,10,0,0,0.0,0,0,0,,9026,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6000.0,410470000000000.0,1000000US410470009006000,0.0,0.88,80103,0,135,44.938873,-123.013287,0,1,8010806000,80082,0,0,59440,0.0,0.0,0,0,,,,0,0,0.08,0.58,0,0.0,0,0.0,0,0,0,0,1,97140.26,1599.98,1,,,108,80108,1,2,16,0,14,0,0,24,900,,0,0,1,0,0,0,0,0,2.230031553,0.014,999999,3.057,0.092,3.999,8.33,7287.65,135,0.0,0.0,0.0,0 +9683,9683,,Block 6019,0,25,PedestrianZones,2301624.399,144314.596,10,0,0,0.0,0,0,0,,4653,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6019.0,410470000000000.0,1000000US410470009006019,0.0,0.0,80103,0,141,44.9376029,-123.0138852,0,1,8010806019,80082,0,0,59441,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,50075.66,961.83,1,,,108,80108,1,0,0,0,0,0,0,0,900,,0,0,1,0,0,0,0,0,1.149577844,0.174,999999,9.146,0.137,3.937,8.552,11326.829,141,0.0,0.0,0.0,0 +9689,9689,,Block 4024,0,25,PedestrianZones,2300868.621,146361.797,10,0,0,0.0,0,0,0,,16692,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4024.0,410470000000000.0,1000000US410470003004024,0.0,1.0,80103,0,165,44.9558053,-123.0242667,0,1,8009204024,80082,0,0,59460,0.0,0.0,0,0,,,,0,0,0.0,0.38,0,0.0,0,0.0,0,0,0,0,1,179637.74,1695.26,1,,,92,80092,1,0,21,0,21,0,0,55,300,,0,0,1,0,0,0,0,0,4.123911461,0.147,999999,4.327,0.155,4.139,9.44,8810.95,165,0.0,0.0,0.0,0 +9690,9690,,Block 4023,0,25,PedestrianZones,2300959.549,146513.3173,10,0,0,0.0,0,0,0,,17021,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4023.0,410470000000000.0,1000000US410470003004023,0.0,1.0,80103,0,160,44.9571937,-123.0231748,0,1,8009204023,80417,0,0,59461,0.0,0.0,0,0,,,,0,0,0.0,0.45,0,0.0,0,0.0,0,0,0,0,1,183171.17,1746.44,1,,,92,80092,1,0,23,0,23,0,0,51,300,,0,0,1,0,0,0,0,0,4.205027647,0.157,999999,4.249,0.194,3.897,9.035,8501.704,160,0.0,0.0,0.0,0 +9695,9695,,Block 3000,0,25,PedestrianZones,2300487.135,147002.5432,10,0,0,0.0,0,0,0,,20981,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,4,31,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3000.0,410470000000000.0,1000000US410470003003000,0.0,0.22,80103,0,131,44.9614613,-123.0293537,0,3,8008803000,80417,0,0,59477,0.0,0.0,0,0,,,,0,0,2.88,0.81,0,0.0,0,0.0,0,0,0,0,1,225797.92,1942.1,1,,,88,80088,1,46,59,0,13,0,0,16,300,,0,0,1,0,0,0,0,0,5.183602433,0.071,999999,3.345,0.111,2.863,6.233,6129.883,131,0.0,0.0,0.0,0 +9696,9696,,Block 3020,0,25,PedestrianZones,2300259.544,146625.5911,10,0,0,0.0,0,0,0,,11505,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3020.0,410470000000000.0,1000000US410470003003020,0.0,0.3,80103,0,125,44.9580066,-123.0320874,0,3,8008803020,80417,0,0,59478,0.0,0.0,0,0,,,,0,0,2.0,0.88,0,0.0,0,0.0,0,0,0,0,1,123814.08,1405.68,1,,,88,80088,1,16,23,0,7,0,0,8,300,,0,0,1,0,0,0,0,0,2.842377554,0.136,999999,4.648,0.144,2.187,3.891,5465.119,125,0.0,0.0,0.0,0 +9697,9697,,Block 3035,0,25,PedestrianZones,2300368.332,146202.6281,10,0,0,0.0,0,0,0,,10454,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3035.0,410470000000000.0,1000000US410470003003035,0.0,1.0,80103,0,155,44.9542327,-123.0305413,0,1,8008903035,80082,0,0,59479,0.0,0.0,0,0,,,,0,0,0.0,0.57,0,0.0,0,0.0,0,0,0,0,1,112501.8,1345.1,1,,,89,80089,2,0,31,0,31,0,0,54,300,,0,0,1,0,0,0,0,0,2.582683687,0.061,999999,6.033,0.216,3.482,7.077,8390.538,155,0.0,0.0,0.0,0 +9698,9698,,Block 4039,0,25,PedestrianZones,2300429.224,146069.1591,10,0,0,0.0,0,0,0,,10621,0,4,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,1,0,0,0,7,0,0,0,25,0,0,0,0,0,0,0,0,43,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4039.0,410470000000000.0,1000000US410470003004039,0.0,0.03,80103,0,160,44.9530493,-123.029717,0,3,8009104039,80082,0,0,59480,0.0,0.0,0,0,,,,0,0,16.5,0.5,0,0.0,0,0.0,0,0,0,0,1,114306.12,1352.29,1,,,91,80091,1,33,34,0,1,0,0,2,300,,0,0,1,0,0,0,0,0,2.624105027,0.064,999999,6.256,0.206,3.771,8.026,9140.402,160,0.0,0.0,0.0,0 +9741,9741,,Block 2011,0,25,PedestrianZones,2309674.559,139834.1066,10,0,0,0.0,0,0,0,,23676,0,2,410470000000000.0,0,0,Outside CL,0,47,,0,0,4,1,1,9999,0,80294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,22011.0,410470000000000.0,1000000US410470027022011,0.0,1.0,80309,0,19,44.8995077,-122.9102392,0,1,8009622011,80299,0,0,64111,0.0,0.0,0,0,,,,0,0,0.0,0.33,0,0.0,0,0.0,0,0,0,0,1,254796.36,2131.64,1,,,96,80096,1,0,2,0,2,0,0,6,2702,,0,0,0,0,0,0,0,0,5.849314448,999999.0,999999,1.924,0.0,0.137,0.412,1495.215,19,0.0,0.0,0.0,0 +9742,9742,,Block 2007,0,25,PedestrianZones,2309608.824,139941.4104,10,0,0,0.0,0,0,0,,35230,0,2,410470000000000.0,0,0,Outside CL,0,47,,0,0,4,1,1,9999,0,80294,0,0,1,0,0,14,0,0,0,0,5,0,0,0,0,0,0,0,0,37,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,22007.0,410470000000000.0,1000000US410470027022007,0.0,0.0,80309,0,20,44.9004552,-122.9111117,0,3,8009622007,80299,0,0,64112,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,379136.82,2705.7,1,,,96,80096,1,27,27,0,0,0,0,0,2702,,0,0,0,0,0,0,0,0,8.70377598,999999.0,999999,1.924,0.0,0.137,0.412,1495.215,20,0.0,0.0,0.0,0 +9769,9769,,Block 2006,0,25,PedestrianZones,2301023.148,146053.4652,10,0,0,0.0,0,0,0,,13015,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2006.0,410470000000000.0,1000000US410470003002006,0.0,0.67,80103,0,160,44.9530753,-123.0221872,0,1,8009502006,80082,0,0,64179,0.0,0.0,0,0,,,,0,0,0.24,0.47,0,0.0,0,0.0,0,0,0,0,1,140067.1,1511.07,1,,,95,80095,1,9,27,0,18,0,0,38,300,,0,0,1,0,0,0,0,0,3.215495314,0.097,999999,5.026,0.203,4.064,9.009,8982.032,160,0.0,0.0,0.0,0 +9770,9770,,Block 1021,0,25,PedestrianZones,2301100.44,146276.7958,10,0,0,0.0,0,0,0,,18774,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,16,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,1021.0,410470000000000.0,1000000US410470003001021,0.0,0.18,80103,0,157,44.9551058,-123.0212964,0,3,8009701021,80082,0,0,64180,0.0,0.0,0,0,,,,0,0,2.33,0.5,0,0.0,0,0.0,0,0,0,0,1,202031.72,2375.46,1,,,97,80097,1,28,34,0,6,0,0,12,300,,0,0,1,0,0,0,0,0,4.638006035,0.113,999999,5.099,0.227,3.815,8.902,8961.139,157,0.0,0.0,0.0,0 +9771,9771,,Block 2001,0,25,PedestrianZones,2301175.482,146103.1789,10,0,0,0.0,0,0,0,,11957,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2001.0,410470000000000.0,1000000US410470003002001,0.0,1.0,80103,0,159,44.9535652,-123.0202772,0,1,8009502001,80082,0,0,64181,0.0,0.0,0,0,,,,0,0,0.0,0.48,0,0.0,0,0.0,0,0,0,0,1,128674.47,1430.75,1,,,95,80095,1,0,24,0,24,0,0,50,300,,0,0,1,0,0,0,0,0,2.953956845,0.065,999999,4.708,0.258,4.168,9.416,9039.488,159,0.0,0.0,0.0,0 +9772,9772,,Block 2009,0,25,PedestrianZones,2300986.555,145958.8158,10,0,0,0.0,0,0,0,,13721,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2009.0,410470000000000.0,1000000US410470003002009,0.0,0.86,80103,0,160,44.9522136,-123.0226133,0,1,8009502009,80082,0,0,64182,0.0,0.0,0,0,,,,0,0,0.09,0.56,0,0.0,0,0.0,0,0,0,0,1,147659.25,1559.66,1,,,95,80095,1,3,21,0,18,0,0,32,300,,0,0,1,0,0,0,0,0,3.389786995,0.035,999999,5.007,0.219,4.178,9.175,9076.546,160,0.0,0.0,0.0,0 +9773,9773,,Block 2011,0,25,PedestrianZones,2301136.314,146011.8217,10,0,0,0.0,0,0,0,,11067,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2011.0,410470000000000.0,1000000US410470003002011,0.0,0.33,80103,0,156,44.9527325,-123.0207372,0,3,8009502011,80082,0,0,64183,0.0,0.0,0,0,,,,0,0,1.08,0.54,0,0.0,0,0.0,0,0,0,0,1,119101.62,1387.22,1,,,95,80095,1,14,21,0,7,0,0,13,300,,0,0,1,0,0,0,0,0,2.734194656,0.128,999999,5.075,0.179,4.117,9.151,9104.631,156,0.0,0.0,0.0,0 +9774,9774,,Block 1025,0,25,PedestrianZones,2301308.438,146246.2576,10,0,0,0.0,0,0,0,,4146,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1025.0,410470000000000.0,1000000US410470003001025,0.0,0.75,80103,0,144,44.9548895,-123.0186494,0,1,8009701025,80082,0,0,64184,0.0,0.0,0,0,,,,0,0,0.17,0.5,0,0.0,0,0.0,0,0,0,0,1,44613.8,958.68,1,,,97,80097,1,2,8,0,6,0,0,12,300,,0,0,1,0,0,0,0,0,1.024191107,0.156,999999,4.927,0.19,3.874,8.93,8868.411,144,0.0,0.0,0.0,0 +9821,9821,,Block 2030,0,25,PedestrianZones,2300327.082,145015.3569,10,0,0,0.0,0,0,0,,18975,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,16,43,0,36,0,0,0,0,0,0,72,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2030.0,410470000000000.0,1000000US410470002002030,0.0,0.5,80103,0,145,44.9435417,-123.0305926,0,2,8006802030,80068,0,0,64247,0.0,0.0,0,0,,,,0,0,0.58,0.6,0,0.0,0,0.0,53,0,0,0,1,204203.39,1807.2,1,,,68,80068,2,101,204,0,103,0,0,173,200,,0,0,1,0,0,0,0,0,4.687860666,0.035,999999,43.442,0.994,2.676,4.996,31000.215,145,0.205880924,3.414572094,0.911309585,0 +9822,9822,,Block 2031,0,25,PedestrianZones,2300274.948,144890.7758,10,0,0,0.0,0,0,0,,17969,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,22,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2031.0,410470000000000.0,1000000US410470002002031,0.0,0.12,80103,0,139,44.9424065,-123.0312034,0,3,8006802031,80068,0,0,64248,0.0,0.0,0,0,,,,0,0,5.5,0.75,0,0.0,0,0.0,52,0,0,0,1,193374.65,1759.04,1,,,68,80068,2,44,50,0,6,0,0,8,200,,0,0,1,0,0,0,0,0,4.439267181,0.037,999999,59.416,1.497,2.757,4.967,41205.121,139,0.206231172,3.420588168,0.912741531,0 +9823,9823,,Block 3017,0,25,PedestrianZones,2300455.982,144968.3051,10,0,0,0.0,0,0,0,,19931,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3017.0,410470000000000.0,1000000US410470002003017,0.0,0.0,80103,0,140,44.9431548,-123.0289414,0,3,8008103017,80068,0,0,64249,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,344,0,0,0,1,214496.01,1855.7,1,,,81,80081,2,1,1,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.92414646,0.042,999999,46.015,0.741,3.33,6.161,33392.634,140,0.206039576,3.401325947,0.90941974,0 +9824,9824,,Block 3025,0,25,PedestrianZones,2300330.561,144731.6669,10,0,0,0.0,0,0,0,,10667,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,845,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3025.0,410470000000000.0,1000000US410470002003025,0.0,0.0,80103,0,126,44.940991,-123.0304359,0,3,8008003025,80068,0,0,64250,0.0,1.92,0,3,NEIGHBORHOOD PARK,,,0,0,0.0,0.0,0,0.0,0,0.0,28,0,0,0,1,114796.17,1389.18,1,,,80,80080,2,550,550,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.635355118,0.081,999999,54.053,2.029,2.254,3.881,37077.305,126,0.206655246,3.411449231,0.911876225,0 +9825,9825,,Block 3018,0,25,PedestrianZones,2300531.695,145165.1253,10,0,0,0.02,0,0,0,,38737,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,1614,0,0,40,0,0,0,0,0,0,1786,0,10,0,0,0,9999,0,0,0,0,0,0,0,1,3018.0,410470000000000.0,1000000US410470002003018,0.0,0.0,80103,0,143,44.9449465,-123.0280604,0,3,8008203018,80082,0,0,64251,0.0,0.02,0,2,HISTORICAL AREA,DEVELOPED,,0,0,0.0,0.0,0,0.8,6,0.0,133,0,0,0,1,416878.21,2683.96,1,,,82,80082,2,1450,1450,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,9.570198412,0.096,999999,62.023,0.641,2.632,4.298,42445.668,143,0.206132399,3.408480108,0.9109334,0 +9826,9826,,Block 3016,0,25,PedestrianZones,2300582.352,144916.8227,10,0,0,0.0,0,0,0,,18995,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,7,0,0,0,1480,0,0,2,0,0,0,0,0,0,4005,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3016.0,410470000000000.0,1000000US410470002003016,0.0,0.0,80103,0,129,44.9427273,-123.0273204,0,3,8008103016,80082,0,0,64252,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,0,0.0,31,0,0,0,1,204412.38,1819.62,1,,,81,80081,2,2457,2457,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.692658342,0.036,999999,45.451,0.461,3.531,6.263,33096.938,129,0.206029309,3.387190876,0.907182296,0 +9827,9827,,Block 3024,0,25,PedestrianZones,2300414.582,144697.2105,10,0,0,0.0,0,0,0,,12877,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3024.0,410470000000000.0,1000000US410470002003024,0.0,0.0,80103,0,120,44.9407047,-123.0293582,0,1,8008003024,80068,0,0,64253,0.0,2.83,0,3,NEIGHBORHOOD PARK,,,0,0,0.0,0.0,0,0.8,6,2.27,1445,0,0,0,1,138578.11,1502.52,1,,,80,80080,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.181312801,0.086,999999,57.475,0.86,3.46,6.281,40803.679,120,0.206638103,3.401580335,0.910333898,0 +9828,9828,,Block 3027,0,25,PedestrianZones,2300362.341,144576.08,10,0,0,0.0,0,0,0,,13640,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3027.0,410470000000000.0,1000000US410470002003027,0.0,0.0,80103,0,126,44.9396004,-123.0299717,0,1,8008003027,80068,0,0,64254,0.0,3.37,0,3,NEIGHBORHOOD PARK,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,146792.38,1546.16,1,,,80,80080,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.369886297,0.061,999999,46.593,0.698,2.483,4.142,32470.105,126,0.206401728,3.401620857,0.909910451,0 +9829,9829,,Block 3023,0,25,PedestrianZones,2300503.172,144661.4692,10,0,0,0.0,0,0,0,,12147,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,477,0,0,1,0,0,0,0,0,0,547,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3023.0,410470000000000.0,1000000US410470002003023,0.0,0.0,80103,0,122,44.9404082,-123.028222,0,3,8008003023,80068,0,0,64255,0.0,2.2,0,3,NEIGHBORHOOD PARK,,,0,0,0.0,0.0,0,0.0,0,0.0,27,0,0,0,1,130725.24,1470.02,1,,,80,80080,2,403,403,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.001035851,0.08,999999,50.45,0.697,3.317,6.105,36195.494,122,0.206592928,3.390638818,0.908526009,0 +9830,9830,,Block 2015,0,25,PedestrianZones,2300787.592,145819.8535,10,0,0,0.0,0,0,0,,14358,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,2,0,0,0,59,0,0,0,0,0,0,0,0,39,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2015.0,410470000000000.0,1000000US410470003002015,0.0,0.14,80103,0,164,44.9509077,-123.0250786,0,3,8009402015,80082,0,0,64256,0.0,0.0,0,0,,,,0,0,3.32,0.55,0,0.0,0,0.0,0,0,0,0,1,154522.36,1590.13,1,,,94,80094,1,73,85,0,12,0,0,22,300,,0,0,1,0,0,0,0,0,3.547342138,0.042,999999,3.913,0.169,4.671,9.747,8742.198,164,0.0,0.0,0.0,0 +9831,9831,,Block 2021,0,25,PedestrianZones,2300751.471,145725.6856,10,0,0,0.0,0,0,0,,13613,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,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,9999,0,0,0,0,0,0,0,3,2021.0,410470000000000.0,1000000US410470003002021,0.0,0.94,80103,0,162,44.9500506,-123.0254988,0,1,8009402021,80082,0,0,64257,0.0,0.0,0,0,,,,0,0,0.03,0.5,0,0.0,0,0.0,0,0,0,0,1,146497.05,1553.9,1,,,94,80094,1,1,16,0,15,0,0,30,300,,0,0,1,0,0,0,0,0,3.363106492,0.099,999999,11.397,0.138,4.335,8.981,13041.607,162,0.0,0.0,0.0,0 +9832,9832,,Block 2013,0,25,PedestrianZones,2300952.993,145863.7092,10,0,0,0.0,0,0,0,,13818,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,57,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2013.0,410470000000000.0,1000000US410470003002013,0.0,0.23,80103,0,165,44.9513487,-123.0230008,0,3,8009502013,80082,0,0,64258,0.0,0.0,0,0,,,,0,0,1.71,0.5,0,0.0,0,0.0,0,0,0,0,1,148702.68,1557.7,1,,,95,80095,1,41,53,0,12,0,0,24,300,,0,0,1,0,0,0,0,0,3.413740723,0.102,999999,5.141,0.153,4.316,9.293,9237.895,165,0.0,0.0,0.0,0 +9833,9833,,Block 2016,0,25,PedestrianZones,2300916.162,145769.2327,10,0,0,0.0,0,0,0,,14451,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2016.0,410470000000000.0,1000000US410470003002016,0.0,0.0,80103,0,157,44.9504886,-123.0234299,0,1,8009502016,80082,0,0,64259,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,155516.15,1594.66,1,,,95,80095,1,0,0,0,0,0,0,0,300,,0,0,1,0,0,0,0,0,3.570156323,0.047,999999,5.42,0.156,4.151,8.754,9071.315,157,0.0,0.0,0.0,0 +9834,9834,,Block 3005,0,25,PedestrianZones,2300804.944,145484.4231,10,0,0,0.0,0,0,0,,15222,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,9999,0,0,0,0,0,0,0,1,3005.0,410470000000000.0,1000000US410470002003005,0.0,0.91,80103,0,145,44.9478955,-123.024726,0,1,8008303005,80082,0,0,64260,0.0,0.0,0,0,,,,0,0,0.08,0.84,0,0.0,0,0.0,0,0,0,0,1,163821.54,1633.44,1,,,83,80083,2,2,23,0,21,0,0,25,200,,0,0,1,0,0,0,0,0,3.760821637,0.123,999999,11.122,0.062,4.2,8.813,12758.384,145,0.0,0.0,0.0,0 +9835,9835,,Block 3008,0,25,PedestrianZones,2300765.334,145384.5636,10,0,0,0.0,0,0,0,,14446,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3008.0,410470000000000.0,1000000US410470002003008,0.0,0.68,80103,0,145,44.9469861,-123.0251881,0,1,8008303008,80082,0,0,64261,0.0,0.0,0,0,,,,0,0,0.4,0.85,0,0.0,0,0.0,0,0,0,0,1,155461.26,1588.4,1,,,83,80083,2,8,25,0,17,0,0,20,200,,0,0,1,0,0,0,0,0,3.568896318,0.039,999999,24.448,0.03,4.052,8.298,20957.206,145,0.0,0.0,0.0,0 +9836,9836,,Block 2017,0,25,PedestrianZones,2301025.74,145727.1435,10,0,0,0.0,0,0,0,,9566,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,21,0,0,31,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2017.0,410470000000000.0,1000000US410470003002017,0.0,0.25,80103,0,161,44.9501408,-123.0220253,0,3,8009502017,80082,0,0,64262,0.0,0.0,0,0,,,,0,0,1.26,0.42,0,0.0,0,0.0,0,0,0,0,1,102945.88,1289.3,1,,,95,80095,1,24,32,0,8,0,0,19,300,,0,0,1,0,0,0,0,0,2.363310133,0.081,999999,4.522,0.172,4.253,9.482,8962.609,161,0.0,0.0,0.0,0 +9837,9837,,Block 2010,0,25,PedestrianZones,2301097.699,145917.4117,10,0,0,0.0,0,0,0,,10777,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2010.0,410470000000000.0,1000000US410470003002010,0.0,0.54,80103,0,162,44.9518724,-123.021189,0,2,8009502010,80082,0,0,64263,0.0,0.0,0,0,,,,0,0,0.52,0.62,0,0.0,0,0.0,0,0,0,0,1,115977.41,1353.74,1,,,95,80095,1,11,24,0,13,0,0,21,300,,0,0,1,0,0,0,0,0,2.66247269,0.065,999999,5.698,0.188,3.837,8.561,9125.952,162,0.0,0.0,0.0,0 +9838,9838,,Block 2018,0,25,PedestrianZones,2301113.974,145667.0951,10,0,0,0.0,0,0,0,,17131,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2018.0,410470000000000.0,1000000US410470003002018,0.0,1.0,80103,0,157,44.9496254,-123.0208839,0,1,8009502018,80082,0,0,64264,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,184358.45,1750.84,1,,,95,80095,1,0,31,0,31,0,0,76,300,,0,0,1,0,0,0,0,0,4.232283891,0.138,999999,5.378,0.224,4.046,8.847,9103.96,157,0.0,0.0,0.0,0 +9839,9839,,Block 3001,0,25,PedestrianZones,2300998.674,145556.7938,10,0,0,0.0,0,0,0,,14972,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3001.0,410470000000000.0,1000000US410470002003001,0.0,0.64,80103,0,151,44.9486009,-123.0223007,0,1,8008303001,80082,0,0,64265,0.0,0.0,0,0,,,,0,0,0.5,0.89,0,0.0,0,0.0,0,0,0,0,1,161123.17,1677.3,1,,,83,80083,2,9,25,0,16,0,0,18,200,,0,0,1,0,0,0,0,0,3.698875678,0.062,999999,9.16,0.227,4.035,8.811,11501.739,151,0.0,0.0,0.0,0 +9840,9840,,Block 3006,0,25,PedestrianZones,2300906.625,145471.7187,10,0,0,0.0,0,0,0,,7178,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3006.0,410470000000000.0,1000000US410470002003006,0.0,1.0,80103,0,145,44.9478098,-123.023433,0,1,8008303006,80082,0,0,64266,0.0,0.0,0,0,,,,0,0,0.0,0.75,0,0.0,0,0.0,0,0,0,0,1,77248.56,1177.62,1,,,83,80083,2,0,27,0,27,0,0,36,200,,0,0,1,0,0,0,0,0,1.773381353,0.066,999999,20.74,0.216,4.152,8.915,18979.641,145,0.0,0.0,0.0,0 +9841,9841,,Block 2007,0,25,PedestrianZones,2301058.538,145398.7785,10,0,0,0.0,0,0,0,,19430,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2007.0,410470000000000.0,1000000US410470006002007,0.0,1.0,80103,0,145,44.9471964,-123.02148,0,1,8010202007,80082,0,0,64267,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,209101.02,2813.93,1,,,102,80102,1,0,26,0,26,0,0,64,600,,0,0,1,0,0,0,0,0,4.800294608,0.238,999999,3.004,0.145,4.191,8.922,7632.314,145,0.0,0.0,0.0,0 +9842,9842,,Block 3000,0,25,PedestrianZones,2300982.726,145411.5436,10,0,0,0.0,0,0,0,,29793,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3000.0,410470000000000.0,1000000US410470002003000,0.0,0.97,80103,0,139,44.9472899,-123.0224453,0,1,8008303000,80082,0,0,64268,0.0,0.0,0,0,,,,0,0,0.02,0.76,0,0.0,0,0.0,0,0,0,0,1,320629.83,3310.42,1,,,83,80083,2,1,35,0,34,0,0,45,200,,0,0,1,0,0,0,0,0,7.360641607,0.203,999999,3.455,0.103,4.204,8.081,7382.584,139,0.0,0.0,0.0,0 +9843,9843,,Block 3013,0,25,PedestrianZones,2300791.478,145127.5654,10,0,0,0.0,0,0,0,,5852,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3013.0,410470000000000.0,1000000US410470002003013,0.0,1.0,80103,0,144,44.9446818,-123.0247552,0,1,8008203013,80082,0,0,64269,0.0,0.0,0,0,,,,0,0,0.0,1.0,0,0.0,0,0.0,0,0,0,0,1,62977.76,1036.52,1,,,82,80082,2,0,3,0,3,0,0,3,200,,0,0,1,0,0,0,0,0,1.445769139,0.15,999999,19.986,0.023,4.242,8.319,18115.184,144,0.209286217,3.445682983,0.922502322,0 +9844,9844,,Block 2015,0,25,PedestrianZones,2301108.326,145313.2836,10,0,0,0.0,0,0,0,,24424,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2015.0,410470000000000.0,1000000US410470006002015,0.0,1.0,80103,0,142,44.9464413,-123.0208156,0,1,8010202015,80082,0,0,64270,0.0,0.0,0,0,,,,0,0,0.0,0.41,0,0.0,0,0.0,0,0,0,0,1,262845.78,2195.45,1,,,102,80102,1,0,46,0,46,0,0,111,600,,0,0,1,0,0,0,0,0,6.034103557,0.105,999999,9.881,0.026,4.034,8.222,11585.884,142,0.0,0.0,0.0,0 +9845,9845,,Block 3021,0,25,PedestrianZones,2300664.39,144733.0652,10,0,0,0.0,0,0,0,,18888,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,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,9999,0,0,0,0,0,0,0,1,3021.0,410470000000000.0,1000000US410470002003021,0.0,0.0,80103,0,123,44.9410975,-123.0262086,0,3,8008103021,80068,0,0,64271,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,308,0,0,0,1,203273.57,1825.39,1,,,81,80081,2,29,29,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.666515041,0.118,999999,45.587,0.517,3.255,6.026,33032.105,123,0.205992009,3.375884573,0.905243909,0 +9846,9846,,Block 3028,0,25,PedestrianZones,2300454.58,144539.8371,10,0,0,0.0,0,0,0,,12556,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,1,0,0,0,997,0,0,2,0,0,0,0,0,0,1105,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3028.0,410470000000000.0,1000000US410470002003028,0.0,0.0,80103,0,128,44.9393004,-123.0287892,0,3,8008003028,80068,0,0,64272,0.0,2.53,0,3,NEIGHBORHOOD PARK,,,0,0,0.0,0.0,0,0.0,0,0.0,24,0,0,0,1,135122.98,1484.06,1,,,80,80080,2,781,781,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,3.101994135,0.0,999999,69.645,0.734,2.178,4.003,47134.976,128,0.206369216,3.390431617,0.908041771,0 +9847,9847,,Block 6008,0,25,PedestrianZones,2300751.352,144562.2677,10,0,0,0.0,0,0,0,,16938,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,6,9,0,0,0,0,123,0,0,0,0,0,0,60,0,4,0,0,0,9999,0,0,0,0,0,0,0,4,6008.0,410470000000000.0,1000000US410470009006008,0.0,0.33,80103,0,134,44.9395857,-123.0250396,0,3,8010606008,80068,0,0,64273,0.0,0.0,0,0,,,,0,0,1.01,0.5,0,0.0,0,0.0,21,0,0,0,1,182286.49,1709.6,1,,,106,80106,1,116,173,0,57,0,0,115,900,,0,0,1,0,0,0,0,0,4.184718397,0.132,999999,30.933,0.558,3.787,7.158,24378.545,134,0.205083992,3.358799267,0.901096914,0 +9848,9848,,Block 3027,0,25,PedestrianZones,2300797.287,144679.5371,10,0,0,0.0,0,0,0,,15149,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,103,143,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3027.0,410470000000000.0,1000000US410470006003027,0.0,0.0,80103,0,130,44.9406534,-123.0245043,0,3,8010403027,80082,0,0,64274,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,120,0,0,0,1,163022.57,1607.81,1,,,104,80104,1,124,124,0,0,0,0,0,600,,0,0,1,0,0,0,0,0,3.742480039,0.041,999999,42.994,0.539,3.47,6.539,31700.967,130,0.205104187,3.358182246,0.900994291,0 +9849,9849,,Block 3026,0,25,PedestrianZones,2300910.88,144634.1697,10,0,0,0.0,0,0,0,,14016,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3026.0,410470000000000.0,1000000US410470006003026,0.0,1.0,80103,0,137,44.9402773,-123.0230477,0,1,8010403026,80082,0,0,64275,0.0,0.0,0,0,,,,0,0,0.0,0.61,0,0.0,0,0.0,0,0,0,0,1,150838.02,1558.03,1,,,104,80104,1,0,14,0,14,0,0,23,600,,0,0,1,0,0,0,0,0,3.462761375,0.015,999999,38.363,0.47,3.597,6.823,28918.86,137,0.0,0.0,0.0,0 +9885,9885,,Block 1001,0,25,PedestrianZones,2302348.599,145910.4119,10,0,0,0.0,0,0,0,,26916,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1001.0,410470000000000.0,1000000US410470006001001,0.0,0.97,80103,0,97,44.9521596,-123.0053407,0,1,8009901001,80377,0,0,64356,0.0,0.0,0,0,,,,0,0,0.01,0.43,0,0.0,0,0.0,0,0,0,0,1,289668.65,2631.91,1,,,99,80099,1,1,33,0,32,0,0,75,600,,0,0,1,0,0,0,0,0,6.649871348,0.194,999999,2.5,0.236,3.834,10.207,8132.969,97,0.0,0.0,0.0,0 +9902,9902,,Block 2018,0,25,PedestrianZones,2299418.912,144776.4138,10,0,0,0.0,0,0,0,,3456,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2018.0,410470000000000.0,1000000US410470002002018,0.0,0.0,80103,0,101,44.941136,-123.0419996,0,3,8006102018,80068,0,0,64392,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,37192.47,1559.74,1,,,61,80061,2,10,10,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,0.853820823,0.194,999999,31.646,2.734,1.562,2.53,21872.567,101,0.0,0.0,0.0,0 +9903,9903,,Block 1012,0,25,PedestrianZones,2300032.246,145899.1806,10,0,0,0.0,0,0,0,,9574,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,1,0,0,0,0,0,0,0,18,0,1,0,0,0,10,0,0,43,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1012.0,410470000000000.0,1000000US410470002001012,0.0,0.08,80103,0,127,44.9514085,-123.0346781,0,3,8008501012,80068,0,0,64393,0.0,0.0,0,0,,,,0,0,5.5,0.5,0,0.0,0,0.0,0,0,0,0,1,103033.08,1285.04,1,,,85,80085,2,33,36,0,3,0,0,6,200,,0,0,1,0,0,0,0,0,2.365311942,0.185,999999,9.635,0.551,2.41,5.15,9462.901,127,0.0,0.0,0.0,0 +9904,9904,,Block 2051,0,25,PedestrianZones,2299877.774,144624.1584,10,0,0,0.0,0,0,0,,17278,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2051.0,410470000000000.0,1000000US410470002002051,0.0,0.0,80103,0,125,44.9398962,-123.0361277,0,3,8006702051,80068,0,0,64394,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,79,0,0,0,1,185947.39,1726.11,1,,,67,80067,2,165,165,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.26876085,0.127,999999,36.193,2.441,1.829,2.876,25004.185,125,0.204392524,3.443292312,0.914308001,0 +9905,9905,,Block 3045,0,25,PedestrianZones,2299597.001,144257.0661,10,0,0,0.04,0,0,0,,8512,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,12,0,0,14,0,1,11,0,0,0,0,0,0,0,0,44,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3045.0,410470000000000.0,1000000US410470002003045,10.14,0.03,80135,0,95,44.9365149,-123.0395373,0,3,8007303045,80068,0,0,64395,0.0,0.04,0,3,LINEAR PARK,DEVELOPED,,0,0,28.0,1.0,0,0.0,0,2.23,253,0,0,0,1,91599.99,1344.58,1,,,73,80073,2,84,87,0,3,0,0,3,200,,0,0,1,0,0,0,0,0,2.102844478,0.179,999999,33.063,1.897,2.633,4.237,23871.92,95,0.202940341,3.436249497,0.911425053,0 +9906,9906,,Block 1033,0,25,PedestrianZones,2300461.973,145365.5966,10,0,0,0.0,0,0,0,,19822,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,76,0,2,0,0,0,0,0,0,41,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1033.0,410470000000000.0,1000000US410470002001033,0.0,0.41,80103,0,155,44.9467301,-123.029023,0,3,8008401033,80068,0,0,64403,0.0,0.0,0,0,,,,0,0,0.52,0.37,0,0.0,0,0.0,8,0,0,0,1,213318.53,1795.83,1,,,84,80084,2,24,41,0,17,0,0,46,200,,0,0,1,0,0,0,0,0,4.897115316,0.061,999999,26.516,0.206,4.015,8.002,22091.481,155,0.0,0.0,0.0,0 +9907,9907,,Block 3019,0,25,PedestrianZones,2300404.96,144840.4349,10,0,0,0.0,0,0,0,,18661,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3019.0,410470000000000.0,1000000US410470002003019,0.0,0.0,80103,0,130,44.9419903,-123.0295368,0,1,8008103019,80068,0,0,64404,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,381,0,0,0,1,200830.65,1794.61,1,,,81,80081,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.610433171,0.125,999999,74.868,0.779,2.903,5.17,51224.096,130,0.206629816,3.406953907,0.911129953,0 +9908,9908,,Block 2014,0,25,PedestrianZones,2300823.114,145913.9207,10,0,0,0.0,0,0,0,,13555,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2014.0,410470000000000.0,1000000US410470003002014,0.0,1.0,80103,0,168,44.9517639,-123.0246659,0,1,8009402014,80082,0,0,64405,0.0,0.0,0,0,,,,0,0,0.0,0.45,0,0.0,0,0.0,0,0,0,0,1,145874.1,1550.69,1,,,94,80094,1,0,17,0,17,0,0,38,300,,0,0,1,0,0,0,0,0,3.348805557,0.106,999999,5.256,0.173,4.455,9.308,9321.358,168,0.0,0.0,0.0,0 +9909,9909,,Block 2012,0,25,PedestrianZones,2301063.286,145821.1313,10,0,0,0.0,0,0,0,,9871,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2012.0,410470000000000.0,1000000US410470003002012,0.0,0.23,80103,0,162,44.9509967,-123.0215869,0,3,8009502012,80082,0,0,64406,0.0,0.0,0,0,,,,0,0,2.13,0.63,0,0.0,0,0.0,0,0,0,0,1,106235.0,1310.53,1,,,95,80095,1,17,22,0,5,0,0,8,300,,0,0,1,0,0,0,0,0,2.438817801,0.121,999999,5.218,0.19,3.912,8.722,8921.388,162,0.0,0.0,0.0,0 +9910,9910,,Block 3014,0,25,PedestrianZones,2300749.382,144951.2781,10,0,0,0.0,0,0,0,,11205,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,1,0,0,0,0,0,0,2,18,0,0,0,0,0,0,0,0,14,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3014.0,410470000000000.0,1000000US410470002003014,0.0,0.0,80103,0,139,44.9430843,-123.0252186,0,3,8008203014,80082,0,0,64407,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,28,0,0,0,1,120584.9,1989.78,1,,,82,80082,2,14,14,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.768245892,0.121,999999,42.725,0.5,4.19,7.174,31935.224,139,0.206078188,3.383604182,0.906827122,0 +9911,9911,,Block 3028,0,25,PedestrianZones,2301110.716,144658.7523,10,0,0,0.0,0,0,0,,25043,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3028.0,410470000000000.0,1000000US410470006003028,0.0,0.95,80103,0,150,44.9405545,-123.0205266,0,1,8010403028,80082,0,0,64408,0.0,0.0,0,0,,,,0,0,0.03,0.61,0,0.0,0,0.0,0,0,0,0,1,269510.48,2957.33,1,,,104,80104,1,1,20,0,19,0,0,31,600,,0,0,1,0,0,0,0,0,6.187103909,0.215,999999,31.379,0.571,4.2,8.107,25270.482,150,0.0,0.0,0.0,0 +9913,9913,,Block 2015,0,25,PedestrianZones,2299320.897,144724.4178,10,0,0,23.77,0,0,0,,139832,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,5,0,0,0,0,0,0,0,76,0,0,0,0,0,0,93,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2015.0,410470000000000.0,1000000US410470002002015,0.0,0.0,80103,0,84,44.9406405,-123.0432202,0,3,8006102015,80068,0,0,64411,0.0,23.77,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,239,0,0,0,1,1504838.1,9590.84,1,,,61,80061,2,91,91,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,34.54629871,0.198,999999,30.076,1.304,2.264,3.68,21604.199,84,0.0,0.0,0.0,0 +10015,10015,,Block 2012,0,25,PedestrianZones,2301385.722,145211.3716,10,0,0,0.0,0,0,0,,27555,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2012.0,410470000000000.0,1000000US410470006002012,0.0,1.0,80103,0,138,44.9456025,-123.0172618,0,1,8010202012,80082,0,0,67469,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,296541.85,2312.0,1,,,102,80102,1,0,33,0,33,0,0,84,600,,0,0,1,0,0,0,0,0,6.807658055,0.067,999999,1.717,0.148,4.607,10.006,7502.888,138,0.0,0.0,0.0,0 +10016,10016,,Block 2017,0,25,PedestrianZones,2301607.647,145189.3533,10,0,0,0.0,0,0,0,,11729,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2017.0,410470000000000.0,1000000US410470006002017,0.0,0.65,80103,0,143,44.9454666,-123.0144422,0,1,8010002017,80082,0,0,67470,0.0,0.0,0,0,,,,0,0,0.21,0.38,0,0.0,0,0.0,0,0,0,0,1,126224.22,1424.87,1,,,100,80100,1,7,20,0,13,0,0,34,600,,0,0,1,0,0,0,0,0,2.89770682,0.063,999999,0.859,0.047,4.609,10.027,6967.026,143,0.0,0.0,0.0,0 +10017,10017,,Block 3018,0,25,PedestrianZones,2301436.633,144757.8679,10,0,0,0.0,0,0,0,,11511,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3018.0,410470000000000.0,1000000US410470006003018,0.0,0.89,80103,0,140,44.9415375,-123.016438,0,1,8010503018,80082,0,0,67471,0.0,0.0,0,0,,,,0,0,0.1,0.8,0,0.0,0,0.0,0,0,0,0,1,123883.8,1395.21,1,,,105,80105,1,1,9,0,8,0,0,10,600,,0,0,1,0,0,0,0,0,2.843978301,0.159,999999,3.224,0.122,5.006,9.988,8455.131,140,0.0,0.0,0.0,0 +10018,10018,,Block 6002,0,25,PedestrianZones,2301549.752,144476.0092,10,0,0,0.0,0,0,0,,15049,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6002.0,410470000000000.0,1000000US410470009006002,0.0,1.0,80103,0,143,44.9390339,-123.0148942,0,1,8010806002,80082,0,0,67472,0.0,0.0,0,0,,,,0,0,0.0,0.69,0,0.0,0,0.0,0,0,0,0,1,161951.42,1671.26,1,,,108,80108,1,0,24,0,24,0,0,35,900,,0,0,1,0,0,0,0,0,3.717889684,0.027,999999,3.847,0.125,4.89,10.051,8895.116,143,0.0,0.0,0.0,0 +10019,10019,,Block 1030,0,25,PedestrianZones,2301784.179,145636.7222,10,0,0,0.0,0,0,0,,19724,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,22,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1030.0,410470000000000.0,1000000US410470006001030,0.0,0.74,80103,0,133,44.9495401,-123.0123825,0,1,8009901030,80082,0,0,67473,0.0,0.0,0,0,,,,0,0,0.15,0.43,0,0.0,0,0.0,0,0,0,0,1,212263.48,1953.76,1,,,99,80099,1,7,27,0,20,0,0,46,600,,0,0,1,0,0,0,0,0,4.872894607,0.049,999999,2.278,0.261,4.208,9.508,7543.324,133,0.0,0.0,0.0,0 +10020,10020,,Block 1022,0,25,PedestrianZones,2302048.162,145723.6394,10,0,0,0.0,0,0,0,,18724,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1022.0,410470000000000.0,1000000US410470006001022,0.0,1.0,80103,0,108,44.9503957,-123.0090729,0,1,8009901022,80082,0,0,67474,0.0,0.0,0,0,,,,0,0,0.0,0.43,0,0.0,0,0.0,0,0,0,0,1,201504.73,1844.28,1,,,99,80099,1,0,19,0,19,0,0,44,600,,0,0,1,0,0,0,0,0,4.62590793,0.198,999999,1.868,0.123,3.732,8.799,6826.729,108,0.0,0.0,0.0,0 +10159,10159,,Block 1000,0,25,PedestrianZones,2302310.092,146017.9311,10,0,0,0.0,0,0,0,,165279,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,1,0,0,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1000.0,410470000000000.0,1000000US410470006001000,0.0,0.95,80103,0,77,44.953116,-123.0058707,0,1,8009901000,80377,0,0,79535,0.0,0.0,0,0,,,,0,0,0.02,0.42,0,0.0,0,0.0,0,0,0,0,1,1778698.41,9461.51,1,,,99,80099,1,7,130,0,123,0,0,292,600,,0,0,1,0,0,0,0,0,40.83326064,0.314,999999,2.616,0.264,3.508,8.201,6922.824,77,0.0,0.0,0.0,0 +10181,10181,,Block 3055,0,25,PedestrianZones,2300246.752,144041.3588,10,0,0,0.0,0,0,0,,100578,0,3,410470000000000.0,0,2,Salem,2112,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3055.0,410470000000000.0,1000000US410470002003055,0.0,1.0,80103,0,141,44.9347581,-123.0312234,0,1,8007803055,80068,0,0,79571,0.0,0.0,0,0,,,,0,0,0.0,1.0,0,0.0,0,0.0,66,0,0,0,1,1082402.13,4353.15,1,,,78,80078,2,0,1,0,1,0,0,1,200,,0,0,1,0,0,0,0,0,24.84851177,0.255,999999,46.587,0.0,0.604,0.9,30391.515,141,0.0,0.0,0.0,0 +10189,10189,,Block 3051,0,25,PedestrianZones,2299234.013,144083.5245,10,0,0,0.0,0,0,0,,46551,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,43,0,51,0,0,0,18,0,3,103,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3051.0,410470000000000.0,1000000US410470002003051,0.0,0.43,80135,0,72,44.9348512,-123.0440649,0,3,8007003051,80068,0,0,79586,0.0,0.0,0,0,,,,0,0,0.82,0.62,0,0.0,0,0.0,40,0,0,0,1,500977.8,3508.8,1,,,70,80070,2,103,181,0,78,0,0,126,200,,0,0,1,0,0,0,0,0,11.50085769,0.123,999999,20.579,0.707,3.396,6.414,17275.678,72,0.0,0.0,0.0,0 +10195,10195,,Block 2003,0,25,PedestrianZones,2301735.67,145497.1509,10,0,0,0.0,0,0,0,,12332,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,4,1,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2003.0,410470000000000.0,1000000US410470006002003,0.0,0.48,80103,0,139,44.948271,-123.012942,0,3,8010002003,80082,0,0,79596,0.0,0.0,0,0,,,,0,0,0.5,0.45,0,0.0,0,0.0,0,0,0,0,1,132719.14,1483.67,1,,,100,80100,1,11,21,0,10,0,0,22,600,,0,0,1,0,0,0,0,0,3.046809504,0.0,999999,1.83,0.207,4.171,9.335,7145.685,139,0.0,0.0,0.0,0 +10196,10196,,Block 2018,0,25,PedestrianZones,2301670.047,145344.8325,10,0,0,0.0,0,0,0,,23590,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,14,0,2,0,0,0,4,0,0,36,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2018.0,410470000000000.0,1000000US410470006002018,0.0,0.74,80103,0,141,44.9468826,-123.0137132,0,1,8010002018,80082,0,0,79597,0.0,0.0,0,0,,,,0,0,0.14,0.41,0,0.0,0,0.0,0,0,0,0,1,253865.65,2160.93,1,,,100,80100,1,8,31,0,23,0,0,56,600,,0,0,1,0,0,0,0,0,5.827948144,0.117,999999,1.868,0.23,4.198,9.469,7255.664,141,0.0,0.0,0.0,0 +10197,10197,,Block 1011,0,25,PedestrianZones,2301707.355,145993.1886,10,0,0,0.0,0,0,0,,7875,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1011.0,410470000000000.0,1000000US410470006001011,0.0,1.0,80103,0,115,44.9527249,-123.0134962,0,1,8009801011,80082,0,0,79598,0.0,0.0,0,0,,,,0,0,0.0,0.47,0,0.0,0,0.0,0,0,0,0,1,84747.01,1164.82,1,,,98,80098,1,0,9,0,9,0,0,19,600,,0,0,1,0,0,0,0,0,1.945521871,0.111,999999,4.842,0.225,2.862,6.464,7236.212,115,0.0,0.0,0.0,0 +10198,10198,,Block 2001,0,25,PedestrianZones,2301960.603,145355.679,10,0,0,7.06,0,0,0,,95887,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,25,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,285,0,9999,0,0,0,0,0,0,0,4,2001.0,410470000000000.0,1000000US410470006002001,8.36,0.39,80103,0,138,44.9470614,-123.0100372,0,3,8010002001,80082,0,0,79599,0.0,7.06,0,3,NEIGHBORHOOD PARK,DEVELOPED,,0,0,0.62,0.39,0,0.0,0,0.0,0,0,0,0,1,1031917.48,4476.61,1,,,100,80100,1,93,152,0,59,0,0,150,600,,0,0,1,0,0,0,0,0,23.68954479,0.172,999999,2.455,0.166,3.577,8.232,6839.459,138,0.0,0.0,0.0,0 +10199,10199,,Block 3023,0,25,PedestrianZones,2301588.857,144660.78,10,0,0,0.0,0,0,0,,15262,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,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,9999,0,0,0,0,0,0,0,4,3023.0,410470000000000.0,1000000US410470006003023,0.0,0.92,80103,0,129,44.9407068,-123.0144718,0,1,8010503023,80082,0,0,79600,0.0,0.0,0,0,,,,0,0,0.05,0.55,0,0.0,0,0.0,0,0,0,0,1,164245.85,1999.67,1,,,105,80105,1,2,26,0,24,0,0,44,600,,0,0,1,0,0,0,0,0,3.770562607,0.242,999999,1.928,0.096,4.422,8.525,6690.194,129,0.0,0.0,0.0,0 +10200,10200,,Block 5003,0,25,PedestrianZones,2301738.502,144437.0047,10,0,0,0.0,0,0,0,,18321,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,77,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5003.0,410470000000000.0,1000000US410470009005003,0.0,0.3,80103,0,129,44.9387359,-123.0124884,0,3,8010905003,80082,0,0,79601,0.0,0.0,0,0,,,,0,0,0.87,0.37,0,0.0,0,0.0,0,0,0,0,1,197166.07,1982.76,1,,,109,80109,1,59,84,0,25,0,0,68,900,,0,0,1,0,0,0,0,0,4.526306165,0.162,999999,9.909,0.082,2.786,6.363,10413.934,129,0.0,0.0,0.0,0 +10201,10201,,Block 5004,0,25,PedestrianZones,2301706.36,144221.9748,10,0,0,0.0,0,0,0,,36856,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5004.0,410470000000000.0,1000000US410470009005004,0.0,1.0,80103,0,131,44.9367927,-123.0128107,0,1,8010905004,80082,0,0,79602,0.0,0.0,0,0,,,,0,0,0.0,0.36,0,0.0,0,0.0,0,0,0,0,1,396633.47,2539.74,1,,,109,80109,1,0,50,0,50,0,0,138,900,,0,0,1,0,0,0,0,0,9.105443522,0.279,999999,12.135,0.114,3.504,8.189,13007.601,131,0.0,0.0,0.0,0 +10204,10204,,Block 5006,0,25,PedestrianZones,2301874.561,144154.9349,10,0,0,0.0,0,0,0,,16806,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5006.0,410470000000000.0,1000000US410470009005006,0.0,1.0,80103,0,116,44.9362367,-123.0106542,0,1,8010905006,80082,0,0,79605,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,180857.78,1932.16,1,,,109,80109,1,0,24,0,24,0,0,62,900,,0,0,1,0,0,0,0,0,4.151919561,0.279,999999,9.967,0.073,3.586,8.505,11821.843,116,0.0,0.0,0.0,0 +10208,10208,,Block 2013,0,25,PedestrianZones,2301285.485,145248.8736,10,0,0,0.0,0,0,0,,22030,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2013.0,410470000000000.0,1000000US410470006002013,0.0,0.97,80103,0,142,44.9459117,-123.0185462,0,1,8010202013,80082,0,0,79615,0.0,0.0,0,0,,,,0,0,0.01,0.4,0,0.0,0,0.0,0,0,0,0,1,237084.45,2132.71,1,,,102,80102,1,1,29,0,28,0,0,70,600,,0,0,1,0,0,0,0,0,5.442705261,0.058,999999,2.278,0.123,4.678,9.663,7641.921,142,0.0,0.0,0.0,0 +10209,10209,,Block 3007,0,25,PedestrianZones,2301324.93,145052.7876,10,0,0,0.0,0,0,0,,12993,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3007.0,410470000000000.0,1000000US410470006003007,0.0,1.0,80103,0,141,44.944159,-123.0179692,0,1,8010403007,80082,0,0,79616,0.0,0.0,0,0,,,,0,0,0.0,0.61,0,0.0,0,0.0,0,0,0,0,1,139826.52,1498.01,1,,,104,80104,1,0,11,0,11,0,0,18,600,,0,0,1,0,0,0,0,0,3.209972356,0.069,999999,1.824,0.113,4.692,9.768,7419.235,141,0.0,0.0,0.0,0 +10218,10218,,Block 6025,0,25,PedestrianZones,2300977.992,144190.1857,10,0,0,0.0,0,0,0,,44190,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,1,0,0,2,0,0,0,0,33,0,24,1,0,0,10,0,0,57,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,6025.0,410470000000000.0,1000000US410470009006025,0.0,0.27,80103,0,160,44.9363026,-123.0220222,0,3,8010606025,80068,0,0,79635,0.0,0.0,0,0,,,,0,0,1.38,0.51,0,0.0,0,0.0,74,0,0,0,1,475563.25,3085.26,1,,,106,80106,1,94,129,0,35,0,0,68,900,,0,0,1,0,0,0,0,0,10.91742022,0.075,999999,12.588,0.126,4.342,7.942,13139.285,160,0.0,0.0,0.0,0 +10224,10224,,Block 1030,0,25,PedestrianZones,2300334.999,145551.4582,10,0,0,0.0,0,0,0,,10809,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1030.0,410470000000000.0,1000000US410470002001030,0.0,1.0,80103,0,151,44.9483661,-123.0307051,0,1,8008401030,80068,0,0,79649,0.0,0.0,0,0,,,,0,0,0.0,0.35,0,0.0,0,0.0,0,0,0,0,1,116321.93,1336.26,1,,,84,80084,2,0,17,0,17,0,0,49,200,,0,0,1,0,0,0,0,0,2.670381685,0.129,999999,17.037,0.288,3.941,7.667,15810.265,151,0.0,0.0,0.0,0 +10270,10270,,Block 2006,0,25,PedestrianZones,2301259.438,145544.2743,10,0,0,0.0,0,0,0,,13633,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2006.0,410470000000000.0,1000000US410470006002006,0.0,0.9,80103,0,147,44.9485615,-123.0189928,0,1,8010202006,80082,0,0,106763,0.0,0.0,0,0,,,,0,0,0.04,0.38,0,0.0,0,0.0,0,0,0,0,1,146711.04,1727.7,1,,,102,80102,1,2,21,0,19,0,0,50,600,,0,0,1,0,0,0,0,0,3.36801901,0.123,999999,2.958,0.157,4.298,9.34,7870.653,147,0.0,0.0,0.0,0 +10271,10271,,Block 1025,0,25,PedestrianZones,2301415.03,145843.3558,10,0,0,0.0,0,0,0,,15084,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1025.0,410470000000000.0,1000000US410470006001025,0.0,1.0,80103,0,149,44.9512953,-123.01714,0,1,8009801025,80082,0,0,106764,0.0,0.0,0,0,,,,0,0,0.0,0.43,0,0.0,0,0.0,0,0,0,0,1,162335.16,1734.17,1,,,98,80098,1,0,21,0,21,0,0,49,600,,0,0,1,0,0,0,0,0,3.726699099,0.226,999999,3.71,0.209,4.441,10.322,8980.137,149,0.0,0.0,0.0,0 +10272,10272,,Block 1027,0,25,PedestrianZones,2301705.105,145732.2322,10,0,0,0.0,0,0,0,,8431,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1027.0,410470000000000.0,1000000US410470006001027,0.0,1.0,80103,0,132,44.950377,-123.0134218,0,1,8009801027,80082,0,0,106765,0.0,0.0,0,0,,,,0,0,0.0,0.58,0,0.0,0,0.0,0,0,0,0,1,90727.97,1236.78,1,,,98,80098,1,0,11,0,11,0,0,19,600,,0,0,1,0,0,0,0,0,2.082825735,0.163,999999,2.869,0.183,3.778,8.71,7410.949,132,0.0,0.0,0.0,0 +10281,10281,,Block 3063,0,25,PedestrianZones,2300253.216,143592.2484,10,0,0,0.0,0,0,0,,11127,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3063.0,410470000000000.0,1000000US410470002003063,0.0,1.0,80135,0,137,44.9307202,-123.0309633,0,1,8007703063,80068,0,0,106791,0.0,0.0,0,0,,,,0,0,0.0,1.0,0,0.0,0,0.0,0,0,0,0,1,119752.18,1400.57,1,,,77,80077,2,0,1,0,1,0,0,1,200,,0,0,1,0,0,0,0,0,2.749129303,0.0,999999,38.131,0.097,0.942,2.181,25799.761,137,0.0,0.0,0.0,0 +10283,10283,,Block 6015,0,25,PedestrianZones,2300768.06,144274.3588,10,0,0,0.0,0,0,0,,15118,0,6,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,12,0,0,0,42,0,9999,0,0,0,0,0,0,0,4,6015.0,410470000000000.0,1000000US410470009006015,0.0,0.0,80103,0,148,44.9370007,-123.024714,0,3,8010606015,80068,0,0,106793,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,20,0,0,0,1,162699.0,1618.26,1,,,106,80106,1,11,11,0,0,0,0,0,900,,0,0,1,0,0,0,0,0,3.735051723,0.041,999999,22.334,0.487,3.975,7.487,19085.374,148,0.203938517,3.342325595,0.896535345,0 +10284,10284,,Block 3014,0,25,PedestrianZones,2301191.219,144670.5555,10,0,0,0.0,0,0,0,,52001,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,0,41,0,1,0,0,0,0,0,0,47,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3014.0,410470000000000.0,1000000US410470006003014,0.0,0.75,80103,0,153,44.9419378,-123.0189818,0,1,8010403014,80082,0,0,106794,0.0,0.0,0,0,,,,0,0,0.16,0.48,0,0.0,0,0.0,0,0,0,0,1,559622.62,4585.05,1,,,104,80104,1,38,155,0,117,0,0,245,600,,0,0,1,0,0,0,0,0,12.84715626,0.215,999999,31.379,0.571,4.2,8.107,25270.482,153,0.0,0.0,0.0,0 +10291,10291,,Block 2028,0,25,PedestrianZones,2300266.147,145227.0776,10,0,0,0.0,0,0,0,,29839,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,101,125,0,2,0,0,0,5,0,0,192,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2028.0,410470000000000.0,1000000US410470002002028,0.0,0.28,80103,0,149,44.945429,-123.0314484,0,3,8006902028,80068,0,0,106801,0.0,0.0,0,0,,,,0,0,1.54,0.6,0,0.8,6,0.0,137,0,0,0,1,321121.77,2372.55,1,,,69,80069,2,156,217,0,61,0,0,101,200,,0,0,1,0,0,0,0,0,7.371935005,0.0,999999,29.431,0.863,3.369,6.97,23296.991,149,0.205114722,3.423517435,0.911679297,0 +10292,10292,,Block 4042,0,25,PedestrianZones,2300580.566,145902.9117,10,0,0,0.0,0,0,0,,10363,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4042.0,410470000000000.0,1000000US410470003004042,0.0,0.73,80103,0,160,44.9515966,-123.0277339,0,1,8009004042,80082,0,0,106802,0.0,0.0,0,0,,,,0,0,0.15,0.42,0,0.0,0,0.0,0,0,0,0,1,111527.4,1336.47,1,,,90,80090,1,4,15,0,11,0,0,26,300,,0,0,1,0,0,0,0,0,2.560314654,0.147,999999,6.148,0.211,4.205,8.847,9596.985,160,0.0,0.0,0.0,0 +10293,10293,,Block 1032,0,25,PedestrianZones,2300528.525,145476.2576,10,0,0,0.0,0,0,0,,9930,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1032.0,410470000000000.0,1000000US410470002001032,0.0,1.0,80103,0,148,44.9477442,-123.028224,0,1,8008401032,80082,0,0,106803,0.0,0.0,0,0,,,,0,0,0.0,0.39,0,0.0,0,0.0,0,0,0,0,1,106859.35,1320.23,1,,,84,80084,2,0,22,0,22,0,0,57,200,,0,0,1,0,0,0,0,0,2.453150937,0.065,999999,25.756,0.249,4.419,8.918,22191.584,148,0.0,0.0,0.0,0 +10294,10294,,Block 2055,0,25,PedestrianZones,2300227.641,144769.8712,10,0,0,0.0,0,0,0,,17341,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,143,0,9999,0,0,0,0,0,0,0,1,2055.0,410470000000000.0,1000000US410470002002055,0.0,0.0,80103,0,134,44.9413056,-123.0317546,0,3,8006802055,80068,0,0,106804,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,72,0,0,0,1,186622.61,1728.31,1,,,68,80068,2,37,37,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.284261877,0.127,999999,57.791,2.227,2.146,3.545,39254.947,134,0.206234428,3.423274052,0.913209478,0 +10295,10295,,Block 3011,0,25,PedestrianZones,2300677.482,145160.3935,10,0,0,0.0,0,0,0,,51628,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,0,0,0,0,1123,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3011.0,410470000000000.0,1000000US410470002003011,0.0,0.0,80103,0,138,44.944945,-123.0262121,0,3,8008203011,80082,0,0,106805,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,117,0,0,0,1,555611.27,3360.45,1,,,82,80082,2,807,807,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,12.75506842,0.125,999999,34.769,0.019,3.899,7.836,27267.188,138,0.20610813,3.395064342,0.908724089,0 +10296,10296,,Block 4035,0,25,PedestrianZones,2300711.086,145957.8217,10,0,0,0.0,0,0,0,,10108,0,4,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,4035.0,410470000000000.0,1000000US410470003004035,0.0,1.0,80103,0,174,44.9521272,-123.0261024,0,1,8009004035,80082,0,0,106806,0.0,0.0,0,0,,,,0,0,0.0,0.45,0,0.0,0,0.0,0,0,0,0,1,108774.95,1320.09,1,,,90,80090,1,0,13,0,13,0,0,29,300,,0,0,1,0,0,0,0,0,2.497127106,0.144,999999,3.831,0.16,4.739,10.038,8876.414,174,0.0,0.0,0.0,0 +10297,10297,,Block 3002,0,25,PedestrianZones,2300844.224,145581.8695,10,0,0,0.0,0,0,0,,14212,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,0,0,0,0,38,0,0,0,0,0,6,0,0,0,0,0,0,20,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3002.0,410470000000000.0,1000000US410470002003002,0.0,0.27,80103,0,151,44.948783,-123.024267,0,3,8008303002,80082,0,0,106807,0.0,0.0,0,0,,,,0,0,2.44,0.89,0,0.0,0,0.0,0,0,0,0,1,152945.84,1606.0,1,,,83,80083,2,44,60,0,16,0,0,18,200,,0,0,1,0,0,0,0,0,3.511150353,0.047,999999,9.639,0.236,3.89,8.248,11447.702,151,0.0,0.0,0.0,0 +10298,10298,,Block 2019,0,25,PedestrianZones,2300991.615,145643.2496,10,0,0,0.0,0,0,0,,7584,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,2019.0,410470000000000.0,1000000US410470003002019,0.0,0.89,80103,0,155,44.9493766,-123.0224243,0,1,8009502019,80082,0,0,106808,0.0,0.0,0,0,,,,0,0,0.07,0.53,0,0.0,0,0.0,0,0,0,0,1,81617.21,1155.71,1,,,95,80095,1,1,9,0,8,0,0,15,300,,0,0,1,0,0,0,0,0,1.873671647,0.062,999999,9.16,0.227,4.035,8.811,11501.739,155,0.0,0.0,0.0,0 +10299,10299,,Block 3012,0,25,PedestrianZones,2300834.486,145127.0111,10,0,0,0.0,0,0,0,,47877,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80090,0,0,1,0,0,0,0,97,0,0,0,0,4,0,0,0,0,0,0,90,0,0,0,691,0,9999,0,0,0,0,0,0,0,1,3012.0,410470000000000.0,1000000US410470002003012,0.0,0.28,80103,0,140,44.945383,-123.023425,0,3,8008203012,80082,0,0,106809,0.0,0.0,0,0,,,,0,0,2.03,0.77,0,0.0,0,0.0,0,0,0,0,1,515245.73,4166.75,1,,,82,80082,2,71,98,0,27,0,0,35,200,,0,0,1,0,0,0,0,0,11.828404,0.15,999999,19.986,0.023,4.242,8.319,18115.184,140,0.0,0.0,0.0,0 +10300,10300,,Block 3015,0,25,PedestrianZones,2300709.029,144855.8213,10,0,0,0.0,0,0,0,,21644,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80106,0,0,1,0,0,0,0,0,0,434,0,0,27,0,0,0,0,0,0,279,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3015.0,410470000000000.0,1000000US410470002003015,0.0,0.0,80103,0,129,44.9422143,-123.0256919,0,3,8008103015,80082,0,0,106810,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.8,6,0.0,167,0,0,0,1,232929.76,1892.97,1,,,81,80081,2,361,361,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,5.347326878,0.045,999999,48.544,0.511,3.814,6.704,35358.169,129,0.205720818,3.373188125,0.904389872,0 +10301,10301,,Block 3025,0,25,PedestrianZones,2300884.133,144765.4756,10,0,0,0.0,0,0,0,,24405,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80106,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,222,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,3025.0,410470000000000.0,1000000US410470006003025,0.0,0.18,80103,0,134,44.9414509,-123.0234384,0,3,8010403025,80082,0,0,106811,0.0,0.0,0,0,,,,0,0,2.18,0.49,0,0.0,6,0.0,123,0,0,0,1,262633.06,2474.44,1,,,104,80104,1,172,211,0,39,0,0,79,600,,0,0,1,0,0,0,0,0,6.029220139,0.107,999999,37.482,0.551,3.922,7.385,28714.801,134,0.205083632,3.35845145,0.900980948,0 +10305,10305,,Block 3044,0,25,PedestrianZones,2299540.243,144152.4837,10,0,0,0.3,0,0,0,,23426,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,35,6,0,0,0,8,0,88,0,0,0,0,0,0,119,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3044.0,410470000000000.0,1000000US410470002003044,10.14,0.02,80135,0,89,44.9355581,-123.0402145,0,3,8007303044,80068,0,0,106818,0.0,0.3,0,3,LINEAR PARK,DEVELOPED,,0,0,55.33,1.0,0,0.0,0,0.0,11,0,0,0,1,252108.39,2052.7,1,,,73,80073,2,166,169,0,3,0,0,3,200,,0,0,1,0,0,0,0,0,5.787607227,0.0,999999,31.875,2.018,2.68,4.316,23162.522,89,0.0,0.0,0.0,0 +10307,10307,,Block 2056,0,25,PedestrianZones,2299969.011,144485.8931,10,0,0,0.0,0,0,0,,8582,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,18,0,0,13,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2056.0,410470000000000.0,1000000US410470002002056,0.0,0.0,80103,0,132,44.9386783,-123.0349172,0,3,8006702056,80068,0,0,106820,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,25,0,0,0,1,92363.17,1299.45,1,,,67,80067,2,19,19,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.1203648,0.039,999999,31.231,0.0,0.346,0.402,20244.51,132,0.204541861,3.429744509,0.912311455,0 +10314,10314,,Block 3007,0,25,PedestrianZones,2300054.591,146750.8678,10,0,0,0.0,0,0,0,,12401,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,3,3007.0,410470000000000.0,1000000US410470003003007,0.0,1.0,80103,0,90,44.9590756,-123.0347336,0,1,8008603007,80417,0,0,106833,0.0,0.0,0,0,,,,0,0,0.0,0.86,0,0.0,0,0.0,0,0,0,0,1,133456.28,1474.74,1,,,86,80086,1,0,6,0,6,0,0,7,300,,0,0,1,0,0,0,0,0,3.063731808,0.303,999999,4.855,0.107,1.854,3.322,5232.978,90,0.0,0.0,0.0,0 +10366,10366,,Block 2013,0,25,PedestrianZones,2299689.089,145261.7939,10,0,0,2.64,0,0,0,,18145,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2013.0,410470000000000.0,1000000US410470002002013,0.0,0.0,80103,0,113,44.9455783,-123.0387711,0,1,8006402013,80068,0,0,110860,0.0,2.64,0,3,URBAN PARK,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,10,0,0,0,1,195267.37,1770.9,1,,,64,80064,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.482718139,0.212,999999,14.957,2.372,1.275,2.099,10915.864,113,0.0,0.0,0.0,0 +10443,10443,,Block 1026,0,25,PedestrianZones,2301576.857,145779.525,10,0,0,0.0,0,0,0,,14192,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1026.0,410470000000000.0,1000000US410470006001026,0.0,1.0,80103,0,132,44.9507665,-123.015065,0,1,8009801026,80082,0,0,111018,0.0,0.0,0,0,,,,0,0,0.0,0.47,0,0.0,0,0.0,0,0,0,0,1,152731.59,1654.35,1,,,98,80098,1,0,19,0,19,0,0,40,600,,0,0,1,0,0,0,0,0,3.50623169,0.217,999999,4.527,0.196,3.58,8.137,8105.078,132,0.0,0.0,0.0,0 +10444,10444,,Block 1019,0,25,PedestrianZones,2301735.823,145824.0024,10,0,0,0.0,0,0,0,,4309,0,1,410470000000000.0,0,2,Salem,0,47,,0,1,4,1,1,9999,0,80100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,1019.0,410470000000000.0,1000000US410470006001019,0.0,1.0,80103,0,116,44.9512111,-123.0130689,0,1,8009801019,80082,0,0,111019,0.0,0.0,0,0,,,,0,0,0.0,0.6,0,0.0,0,0.0,0,0,0,0,1,46369.14,996.72,1,,,98,80098,1,0,6,0,6,0,0,10,600,,0,0,1,0,0,0,0,0,1.064488092,0.113,999999,4.389,0.158,3.154,7.263,7457.526,116,0.0,0.0,0.0,0 +10445,10445,,Block 5002,0,25,PedestrianZones,2301866.575,144382.5351,10,0,0,0.0,0,0,0,,41443,0,5,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,5002.0,410470000000000.0,1000000US410470009005002,0.0,0.95,80103,0,125,44.9382818,-123.010845,0,1,8010905002,80082,0,0,111020,0.0,0.0,0,0,,,,0,0,0.02,0.39,0,0.0,0,0.0,0,0,0,0,1,446002.81,3190.26,1,,,109,80109,1,3,63,0,60,0,0,155,900,,0,0,1,0,0,0,0,0,10.2388067,0.203,999999,10.206,0.085,2.738,6.316,10574.115,125,0.0,0.0,0.0,0 +10450,10450,,Block 2000,0,25,PedestrianZones,2302158.952,145245.8983,10,0,0,0.0,0,0,0,,130337,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,4,1,1,9999,0,80100,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,9999,0,0,0,0,0,0,0,4,2000.0,410470000000000.0,1000000US410470006002000,0.0,0.96,80103,0,133,44.9461294,-123.0074817,0,1,8010002000,80082,0,0,111025,0.0,0.0,0,0,,,,0,0,0.02,0.39,0,0.0,0,0.0,0,0,0,0,1,1402659.54,5559.43,1,,,100,80100,1,5,119,0,114,0,0,291,600,,0,0,1,0,0,0,0,0,32.20060373,0.409,999999,2.55,0.232,2.8,7.302,6305.289,133,0.0,0.0,0.0,0 +10530,10530,,Block 3043,0,25,PedestrianZones,2299488.159,144011.451,10,0,0,0.0,0,0,0,,15879,0,3,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3043.0,410470000000000.0,1000000US410470002003043,0.0,0.58,80135,0,82,44.9342748,-123.0408178,0,2,8007403043,80068,0,0,111167,0.0,0.0,0,0,,,,0,0,0.62,0.85,0,0.0,0,0.0,9,0,0,0,1,170888.66,1656.91,1,,,74,80074,2,8,19,0,11,0,0,13,200,,0,0,1,0,0,0,0,0,3.92306046,0.134,999999,26.814,1.218,2.55,4.151,19817.71,82,0.0,0.0,0.0,0 +10533,10533,,Block 3056,0,25,PedestrianZones,2300205.878,143929.9614,10,0,0,0.0,0,0,0,,3595,0,3,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3056.0,410470000000000.0,1000000US410470002003056,0.0,0.0,80135,0,131,44.9337446,-123.0316968,0,1,8007803056,80068,0,0,111170,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,38695.02,1915.54,1,,,78,80078,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,0.888314586,0.17,999999,36.647,0.0,0.813,1.608,24483.206,131,0.0,0.0,0.0,0 +10534,10534,,Block 3035,0,25,PedestrianZones,2300335.414,144250.962,10,0,0,0.0,0,0,0,,97571,0,3,410470000000000.0,0,2,Salem,2112,47,,0,0,1,1,1,9999,0,80106,0,0,1,0,2,39,0,852,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,3035.0,410470000000000.0,1000000US410470002003035,0.0,0.03,80103,0,146,44.9366684,-123.0301838,0,3,8007803035,80068,0,0,111171,0.0,0.0,0,0,,,,0,0,25.97,0.84,0,0.0,0,0.0,62,0,0,0,1,1050040.28,4383.73,1,,,78,80078,2,831,858,0,27,0,0,32,200,,0,0,1,0,0,0,0,0,24.10558657,0.0,999999,46.345,0.65,2.999,5.656,33280.261,146,0.20390242,3.384155263,0.903400979,0 +10541,10541,,Block 2007,0,25,PedestrianZones,2299476.252,145409.6239,10,0,0,0.28,0,0,0,,0,29146,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2007.0,410470000000000.0,1000000US410470002002007,0.0,0.0,80103,0,109,44.9468478,-123.0415258,0,1,8006102007,80068,0,0,111190,0.0,0.28,0,3,LINEAR PARK / CONNECTOR TRAIL,DEVELOPED,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,1,1,313659.33,2495.24,1,,,61,80061,2,0,0,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,7.200621119,0.331,999999,10.994,1.954,0.357,0.541,7382.392,109,0.0,0.0,0.0,0 +10542,10542,,Block 2039,0,25,PedestrianZones,2299546.185,144896.1252,10,0,0,0.0,0,0,0,,17292,0,2,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,0,0,0,0,0,0,0,0,8,0,19,0,0,0,2,0,9,45,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2039.0,410470000000000.0,1000000US410470002002039,0.0,0.6,80103,0,106,44.9422488,-123.0404354,0,2,8006302039,80068,0,0,111191,0.0,0.0,0,0,,,,0,0,0.41,0.61,0,1.5,18,0.0,48,0,0,0,1,186088.65,1725.04,1,,,63,80063,2,27,67,0,40,0,0,66,200,,0,0,1,0,0,0,0,0,4.272003712,0.265,999999,34.545,3.186,1.704,2.746,23866.219,106,0.202608529,3.45788853,0.914318878,0 +10543,10543,,Block 2014,0,25,PedestrianZones,2299739.298,145357.5084,10,0,0,0.0,0,0,0,,10400,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,1,0,0,0,0,0,0,8,58,0,19,0,0,0,0,0,0,106,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,2014.0,410470000000000.0,1000000US410470002002014,0.0,0.0,80103,0,116,44.9464534,-123.0381733,0,3,8006402014,80068,0,0,111192,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,4,0,0,0,1,111923.96,1442.39,1,,,64,80064,2,109,109,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,2.56941838,0.212,999999,14.957,2.372,1.275,2.099,10915.864,116,0.0,0.0,0.0,0 +10544,10544,,Block 1027,0,25,PedestrianZones,2300055.942,145416.2674,10,0,0,0.0,0,0,0,,19456,0,1,410470000000000.0,0,2,Salem,0,47,,0,0,1,1,1,9999,0,80064,0,0,1,0,0,0,0,15,0,0,3,0,305,0,0,0,0,0,0,276,0,0,0,0,0,9999,0,0,0,0,0,0,0,1,1027.0,410470000000000.0,1000000US410470002001027,0.0,0.0,80103,0,135,44.9470714,-123.034186,0,3,8008501027,80068,0,0,111193,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,0.0,0,0.0,0,0,0,0,1,209383.72,2029.17,1,,,85,80085,2,224,224,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.80678449,0.0,999999,18.502,1.102,2.92,6.036,15703.917,135,0.0,0.0,0.0,0 +10545,10545,,Block 2043,0,25,PedestrianZones,2299925.911,144745.5733,10,0,0,0.0,0,0,0,,17990,0,2,410470000000000.0,0,2,Salem,0,47,,0,1,1,1,1,9999,0,80064,0,0,0,0,0,1,0,0,0,682,0,0,6,0,0,0,0,0,0,740,1,0,0,0,0,9999,0,0,0,0,0,0,0,1,2043.0,410470000000000.0,1000000US410470002002043,0.0,0.0,80103,0,123,44.9410019,-123.0355663,0,3,8006802043,80068,0,0,111194,0.0,0.0,0,0,,,,0,0,0.0,0.0,0,1.5,18,0.0,40,0,0,0,1,193604.12,1760.7,1,,,68,80068,2,623,623,0,0,0,0,0,200,,0,0,1,0,0,0,0,0,4.444535111,0.0,999999,46.087,2.61,2.667,4.33,32266.782,123,0.204678635,3.445358506,0.914922554,0 diff --git a/resident/model_data/skats/data_cropped/transitSkims__AM.omx b/resident/model_data/skats/data_cropped/transitSkims__AM.omx index fcd53d77ba9d4a9e67b6a2392c6110d1db6544b4..6ea6098e9f7587cc8c0f4c877a387396ee1155d8 100644 GIT binary patch delta 225 zcmeylk@e?B)(u;DSz^{0Wlc_C*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!)^qdX={VZJo delta 225 zcmeylk@e?B)(u;DS%PFfW=>9E*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!)^qdX==-XdF diff --git a/resident/model_data/skats/data_cropped/transitSkims__EA.omx b/resident/model_data/skats/data_cropped/transitSkims__EA.omx index 72ebf50850a876b367dff849d63e6aabc3da1217..5b8c54c0fbcb060c39b97c1ca7386dbcf59a408a 100644 GIT binary patch delta 225 zcmZo%!P>Zjb;A~3mY6k0S(6i(H8wxsJ;Md&ZQdY}0u>k7wqWxPwLcK?$sk^Y5fX2* zLY2a13A;N;@-sYP@*5-!HlGOL;epry(p!-TlLPT2a$&p;5*C{SD$YPuZdPbrg3trD fp<@!V4IJ|j`ph=ltvmZjb;A~3mLQprnUfQkH8wxsJ;Md&ZQdY}0u>k7wqWxPwLcK?$sk^Y5fX2* zLY2a13A;N;@-sYP@*5-!HlGOL;epry(p!-TlLPT2a$&p;5*C{SD$YPuZdPbrg3trD fp<@!V4IJ|j`ph=ltvm{hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!)TsjE=wo+XU delta 225 zcmcb*g7xYO)(u;DS%PFfW=>9E*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!)TsjE=n+;z* diff --git a/resident/model_data/skats/data_cropped/transitSkims__MD.omx b/resident/model_data/skats/data_cropped/transitSkims__MD.omx index 015a3ec1723f124dde4637f9a20178165e891bcf..16fe2925f1713a5a271b55d6e1907792afecdc85 100644 GIT binary patch delta 225 zcmZ3ynsxDN)(u;DSz^~1Wlc_C*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!){5%-|WY}E( delta 225 zcmZ3ynsxDN)(u;DS%PFfW=>9E*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!){5%-|Nt0hL diff --git a/resident/model_data/skats/data_cropped/transitSkims__PM.omx b/resident/model_data/skats/data_cropped/transitSkims__PM.omx index b4daba8d9f4aca97d54d36ad822b71b2fe553882..8f62359cf8e559f48fdf8724702730361fe3c783 100644 GIT binary patch delta 225 zcmaEHjP=Da)(u;DSz^~1Wlc_C*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!)+_4Y<3+Y{v delta 225 zcmaEHjP=Da)(u;DS%PFfW=>9E*4X@j_Y4=9w|Rp^3RGNR+k(wI)c!!kCxdtqMo7HL z3RMc5CG74X${hX-Nrxmlrg2|^Fp fhK@C=rh}FxAGiRpTM>`+)(!)+_4Y<@ReV| diff --git a/resident/model_data/skats/data_cropped/walkSkim.omx b/resident/model_data/skats/data_cropped/walkSkim.omx index a99f958dcebd5850a0b60ab4232fdbc54e9ee5b8..587fddc4b18db1433ecf9cab2857493bd675af3e 100644 GIT binary patch delta 33 mcmdlyk#X}x#tmC|S>o0hWlc_C*4X@j_Y4=9w|RpEvjG6&JPeWm delta 33 mcmdlyk#X}x#tmC|S%PFfW=>9E*4X@j_Y4=9w|RpEvjG6)rVQ2q From c5545f93fc3ef4bbb77ed1e50b3ccc0236e782f6 Mon Sep 17 00:00:00 2001 From: Will Alexander Date: Wed, 17 Jun 2026 10:26:45 -0400 Subject: [PATCH 45/46] Remove stray commas from land use --- .../metro/data_cropped/autoSkims__AM.omx | Bin 262919 -> 262919 bytes .../metro/data_cropped/autoSkims__EA.omx | Bin 263612 -> 263612 bytes .../metro/data_cropped/autoSkims__EV.omx | Bin 262694 -> 262694 bytes .../metro/data_cropped/autoSkims__MD.omx | Bin 261884 -> 261884 bytes .../metro/data_cropped/autoSkims__PM.omx | Bin 262622 -> 262622 bytes .../metro/data_cropped/land_use.csv | 1120 ++++++++--------- .../metro/data_cropped/transitSkims__AM.omx | Bin 344141 -> 344141 bytes .../metro/data_cropped/transitSkims__EA.omx | Bin 364922 -> 364922 bytes .../metro/data_cropped/transitSkims__EV.omx | Bin 338501 -> 338501 bytes .../metro/data_cropped/transitSkims__MD.omx | Bin 332210 -> 332210 bytes .../metro/data_cropped/transitSkims__PM.omx | Bin 336354 -> 336354 bytes .../metro/data_cropped/walkSkim.omx | Bin 19999 -> 19999 bytes 12 files changed, 560 insertions(+), 560 deletions(-) diff --git a/resident/model_data/metro/data_cropped/autoSkims__AM.omx b/resident/model_data/metro/data_cropped/autoSkims__AM.omx index f8c0625feb7a27a0feb3192a24503be923f98bbb..ebcb031d42ab576ed4f813f517d2c3247f98fbbc 100644 GIT binary patch delta 330 zcmZo~6KHP}*sz6{#cG{V*5m|cjm-~u&u}qWt=qg#B8?YFPv+ZpX!8xVJ0P*i>kb~; zTww%Z`<*?sS;7v&2C3QM2~{IuwE08`4-b>|y2&6lGZKN~KsHE?MJ|NBPQq$)K*br5 zn$2>p%fM+kNZYL2{O$%DFOUYiZ^tvB zJ|G)pcf=CoQytvP(|A%BpBhUw(n4ea)4gl9-$B8NLXyovtm5Q d!(_W|yPZ2D&{o@Z?e~HhftYFgy&z`I4FG?fjw=8F delta 330 zcmZo~6KHP}*sz6{rE--~*5m|cjm-~u&u}qSuG+j#B8?YFPv+ZpX!8xVJ6udvt0u2I zcxZEl5rpk`_RwYtI|v)3W``$KjfBzW6Cpf2AoU5>}f7D$ei# z#W%~fE(6hEdpagT<$?BS%tNSkSP4{HvuZQnwt3tjdfhhkG~N1Itiog9Gr|kd>{#+qU{nAjBr)kcPK+SK(B6((1&p(EVk!a gF`naLs#~?)&YclxYu&2$dqIpq%(VSp5VPh60M7fA!TD83Csd7u(dH8&JUk%vAT=`*f#Mbrb1ZTp>~#`Wn*%D&@Bqa( z%e5{8(O`QzCPC$a_GrvQsC8HgQOmb&9ydtOx`Pnf?<|nET(|k%4K`jN4R+s-XFz>G zHpuRXPY^c9eLwy}*y|*WwsUYY`tU&&ZI_T>gsa-VLmA2edUbn*K8zz_u|3a<@f;6O b&vrX^Mxd=$>)P)HF#<8u_Ip9h_cj3l-J*{G delta 330 zcmdnfEwHCsV8a$(mXcLQS(6i(H8wxsJ;TLRvTE}>i8NlO(p8iBwjJ7hL+uV1h`sLM zq0JRW5VqghLz^Y+AZ(DD9iC7%5=NU(gz)fy)PvN_NJOZy$OW>?faXY8Z4Rh7!vkb* zmTO%GqQUlbOoGY-?a`QrQ0uS~qLy#lJZ`3PpxX{YXuq=%`rQpSUZ6PGeLJ23^#R!+ zyCXh9*dX`)_zPjLlQ7!O!O7^u2UWCPLV^(}Qvr6t_8rPl4$!OHBlKY$35)G{R*dI( cfXcSpxibQ7tytB5FNhI{nYP~xV!pQt00+U9TL1t6 diff --git a/resident/model_data/metro/data_cropped/autoSkims__EV.omx b/resident/model_data/metro/data_cropped/autoSkims__EV.omx index 4b235e4ed1b48fcd5b425384fb74ab51afec3d56..11287f981c3500dcbbe776a0e1cd2964a93574a5 100644 GIT binary patch delta 330 zcmZ41BCxDQV8a$(7Uy+FS(6i(H8wxsJ;TN1yl(S4i8NjyJ(+LYq0Kkc?tsK5uRC~X zbA=Iv?RWOjW(hkW+XbR#hbM%+PQqyOi4YzhkT^)qj6{SQi(Hr*tIYuwXFzH;%e5{8 zs|DH9F$pRUv`1qeLaoC}pjy{;oB6iQ;|9^|4nk~-4K`k&IM{tVo&og%*&w?k zK0(+Zvw!@Buz~K|&cVs(!v|HgT|$Bpu4?-ZWe~>=Y}ED$eHcf=Vtbwy<2fFn%yv6> WMxd>3>)P)HF#<8u_Ip9h9_s;g0gr|N delta 330 zcmZ41BCxDQV8a$(miARfS(6i(H8wxsJ;TM+v1;==i8NjyJ(+LYq0Kkc?tsK5uRC~X zbA=Iv?RWOjW(hk88>D83Cy?CcCFgXw{0Fbh+cOPLi?SC(C==r@dCxc?%VMUs1L{n z*&Xo-!UmcB<1dii4R+sl4o*fNJ`e|}XuE_2BSZ$MYWoglC=8AoqDq<`W@2JRmkm&5T5dI7p2}E=-Np=75SbAT^ui zT9<*HeMhf?7kh(fck)J zklhiVAZ(D?KmJ14K=*Cu;AHgSgDToCA;Ab&wS9*&lmqnY_6U6t#{uLgi|u(=8Ao=`OsMw?HB@bEA-teOl`Gb0fw4rGJWSmZ+3>m;l;2UMH^ zso5;ox(uuqB;PR!Di5?rV;+#*2(%NZ)?p=3ZR4uVeB0)6gXnb!A++CF2>tE`8!uQb zP~VPc5PcxKBR&DyO%S_({DrXBNf>SC;AHgS14#fCZI_T>gsa-VLmA2edUbn*K8zz_ ku|3a<@f;6R^Q!H3?uD83Cy?z3R3l-u`9ug04~Pv?Gb0fq4pL*03sYmYIiTVUNX=%s z)@5L|Ao-3-PP&Ey1h+d&BJcNRjwyTQf_6bHL+$1|WlARA>zBAnjM}{H4;XfPlWLBfYgK3%t%D2vB(9oTY=_CSZxldIKu;E zZ_reRkU3~f)Oaw4tBxz9m-G+(5u@c^kEzci|u(< ejOTcO%C_6NGXiaGU)6puh!KdHmfs6vUJn4p29`ho diff --git a/resident/model_data/metro/data_cropped/land_use.csv b/resident/model_data/metro/data_cropped/land_use.csv index f5a55e4..5d45cdd 100644 --- a/resident/model_data/metro/data_cropped/land_use.csv +++ b/resident/model_data/metro/data_cropped/land_use.csv @@ -1,653 +1,653 @@ MAZ,TAZ,EXTERNAL,EMP_AFS,EMP_CON,EMP_GOV,EMP_HCS,EMP_IFRPBS,EMP_NRM,EMP_OSV,EMP_RET,EMP_AER,EMP_MFG,EMP_WT,EMP_EDU,EMP_TWU,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,DIST_Kto8,DIST_9to12,COLLEGEENROLL,PRKCST_HR,PRKCST_DAY,PRKCST_MNTH,PRKSPACES,INTHMI,PARKATTRACT,TERMINALTIME,ESCOOACCTIME,EBIKEACCTIME,PNR_SPACES,DISTRICT9,TOTHHS,TOTPOP,ACRES,walk_dist_local_bus,walk_dist_premium_transit,empden,retempden,duden,popden,popempdenpermi,totint,exp_hourly,exp_daily,exp_monthly,external_size_term -1,1,0,276,4,50,0,465,10,1,156,0,0,0,0,0,1190,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,290,0,,,,0,1,0,0,1.663376972,0.111,0.114,212.171,5.386,8.387,9.721,142010.866,290,2.358531895,13.83811854,11.29363801,0 -2,1,0,20,0,0,26,171,0,0,16,14,7,0,0,0,294,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.909,,300,0,,,,0,1,1,1,1.648408203,0.025,0.025,248.867,5.958,8.134,10.023,165689.228,300,2.341114726,13.73529804,11.21401946,0 -3,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,93,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,0,0,1.692986735,0.0,0.0,200.985,4.795,9.947,12.403,136568.548,295,2.358749471,13.86000086,11.30640305,0 +1,1,0,272,1,61,0,402,4,2,215,0,0,0,0,0,466,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,290,0,,,,0,1,0,0,1.663376972,0.111,0.114,212.171,5.386,8.387,9.721,142010.866,290,2.358531895,13.83811854,11.29363801,0 +2,1,0,13,1,0,9,120,0,0,9,17,5,0,0,0,222,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.909,,300,0,,,,0,1,1,1,1.648408203,0.025,0.025,248.867,5.958,8.134,10.023,165689.228,300,2.341114726,13.73529804,11.21401946,0 +3,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,187,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,0,0,1.692986735,0.0,0.0,200.985,4.795,9.947,12.403,136568.548,295,2.358749471,13.86000086,11.30640305,0 4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.66587395,0.025,0.025,248.867,5.958,8.134,10.023,165689.228,303,2.348384537,13.77652385,11.24189758,0 -5,1,0,3,0,0,0,555,0,5,0,8,0,36,0,0,779,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,281,0,,,,0,1,0,0,1.674021285,0.0,0.0,185.323,4.829,12.455,16.658,129267.743,281,2.342058854,13.74950742,11.18576795,0 -6,1,0,103,565,468,168,2144,13,224,33,2,137,755,56,196,3945,0,0,PORTLAND,PORTLAND,0,2.4,13.0,13.0,,292,0,,,,0,1,0,0,1.67152016,0.0,0.0,177.345,4.56,12.639,16.549,124092.272,292,2.340672256,13.75411897,11.21717131,0 -7,1,0,0,0,0,0,13,0,0,0,0,0,0,0,515,807,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,260,0,,,,0,1,0,0,1.618273682,0.048,0.151,184.132,4.853,9.589,12.108,125593.938,260,2.371995677,13.94841663,11.3383661,0 -8,1,0,7,0,0,0,0,0,0,7,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,275,0,,,,0,1,0,0,1.667942492,0.078,0.078,251.499,6.04,8.211,10.125,167439.813,275,2.357085348,13.82614764,11.24679577,0 -9,1,0,188,12,9,4,153,0,9,5,0,0,0,1,0,442,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,264,0,,,,0,1,5,5,1.605403154,0.097,0.103,206.557,4.91,6.758,8.32,137521.742,264,2.370953654,13.92619916,11.33339506,0 -10,1,0,0,0,0,7,8,0,6,20,0,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.4,15.703,12.5,,274,0,,,,0,1,0,0,1.644174743,0.078,0.078,251.499,6.04,8.211,10.125,167439.813,274,2.385061556,14.00948872,11.42693755,0 -11,1,0,2,0,0,0,24,0,0,6,0,0,0,0,0,54,0,0,PORTLAND,PORTLAND,0,2.4,15.0,13.7,,268,0,,,,0,1,0,0,1.623607736,0.127,0.019,216.39,5.495,6.954,8.11,143679.42,268,2.370414336,13.9329338,11.35523126,0 -12,1,0,59,0,0,1,15,0,0,70,0,0,0,0,0,94,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,279,0,,,,0,1,0,0,1.693490176,0.097,0.1,206.431,5.128,8.852,10.507,138840.328,279,2.385022533,14.01003395,11.42615299,0 -13,2,0,2,0,7,0,302,0,14,55,0,0,0,0,0,178,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,290,0,,,,0,1,0,0,1.675628107,0.027,0.027,239.057,6.004,11.303,13.72,161777.005,290,2.392867163,14.04817381,11.4617286,0 -14,2,0,291,0,0,0,157,0,36,37,0,0,0,0,0,458,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.710804618,0.0,0.024,200.507,5.396,9.777,11.267,135534.871,305,2.363402577,13.85398155,11.30305243,0 -15,2,0,84,0,0,2,507,0,0,6,0,0,5,0,0,725,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,92,116,1.645932162,0.0,0.0,169.13,4.345,9.47,11.166,115389.093,295,2.391096468,13.91387982,11.34976476,0 -16,2,0,0,0,0,2,353,0,19,0,0,0,14,3,0,409,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.687356476,0.0,0.024,200.507,5.396,9.777,11.267,135534.871,305,2.397611539,13.93687801,11.38521225,0 -17,2,0,0,2,0,39,1880,0,2,47,0,0,0,0,0,1509,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,271,0,,,,0,1,0,0,1.612004312,0.127,0.019,216.39,5.495,6.954,8.11,143679.42,271,2.370498215,13.91910624,11.34618226,0 -18,2,0,55,0,0,0,0,0,21,1,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,0,0,1.669718426,0.048,0.051,169.13,4.345,9.47,11.166,115389.093,280,2.385072448,13.99163458,11.41321432,0 -19,2,0,28,0,0,9,17,0,18,7,5,9,2,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,21.0,10.0,,271,0,,,,0,1,0,0,1.61121629,0.0,0.152,190.39,4.749,6.558,7.558,126687.037,271,2.37226633,13.90717476,11.34319338,0 -20,2,0,5,1,0,0,333,0,3,4,5,0,4,0,0,333,0,0,PORTLAND,PORTLAND,0,2.4,10.0,12.818,,280,0,,,,0,1,0,0,1.672477075,0.0,0.1,168.518,5.076,9.942,11.668,115319.101,280,2.385096937,13.85895891,11.30656692,0 -21,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,9.75,9.045,,246,0,,,,0,1,0,0,1.166340659,0.0,0.0,101.829,5.469,17.432,21.122,78688.764,246,2.358197298,13.69930591,11.24871236,0 -22,3,0,174,1,0,65,1962,0,8,5,0,0,5,0,2,4443,0,0,PORTLAND,PORTLAND,0,2.4,26.0,21.165,,271,0,,,,0,1,0,0,3.650661109,0.0,0.0,133.902,6.866,17.181,20.799,99008.573,271,2.368044163,13.84408252,11.33359268,0 +5,1,0,4,0,0,0,284,0,2,0,6,0,38,0,0,746,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,281,0,,,,0,1,0,0,1.674021285,0.0,0.0,185.323,4.829,12.455,16.658,129267.743,281,2.342058854,13.74950742,11.18576795,0 +6,1,0,189,359,842,130,3065,10,209,30,1,141,618,65,141,7601,0,0,PORTLAND,PORTLAND,0,2.4,13.0,13.0,,292,0,,,,0,1,0,0,1.67152016,0.0,0.0,177.345,4.56,12.639,16.549,124092.272,292,2.340672256,13.75411897,11.21717131,0 +7,1,0,0,0,0,0,34,0,0,0,0,0,0,0,675,980,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,260,0,,,,0,1,0,0,1.618273682,0.048,0.151,184.132,4.853,9.589,12.108,125593.938,260,2.371995677,13.94841663,11.3383661,0 +8,1,0,4,0,0,0,0,0,0,14,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,275,0,,,,0,1,0,0,1.667942492,0.078,0.078,251.499,6.04,8.211,10.125,167439.813,275,2.357085348,13.82614764,11.24679577,0 +9,1,0,195,13,9,3,374,0,4,4,0,0,0,1,0,417,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,264,0,,,,0,1,5,5,1.605403154,0.097,0.103,206.557,4.91,6.758,8.32,137521.742,264,2.370953654,13.92619916,11.33339506,0 +10,1,0,0,0,0,11,14,0,4,38,0,0,0,0,0,30,0,0,PORTLAND,PORTLAND,0,2.4,15.703,12.5,,274,0,,,,0,1,0,0,1.644174743,0.078,0.078,251.499,6.04,8.211,10.125,167439.813,274,2.385061556,14.00948872,11.42693755,0 +11,1,0,2,0,0,0,17,0,0,9,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,15.0,13.7,,268,0,,,,0,1,0,0,1.623607736,0.127,0.019,216.39,5.495,6.954,8.11,143679.42,268,2.370414336,13.9329338,11.35523126,0 +12,1,0,58,0,0,1,15,0,0,71,0,0,0,0,0,85,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,279,0,,,,0,1,0,0,1.693490176,0.097,0.1,206.431,5.128,8.852,10.507,138840.328,279,2.385022533,14.01003395,11.42615299,0 +13,2,0,2,0,13,0,305,0,18,36,0,0,0,0,0,290,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,290,0,,,,0,1,0,0,1.675628107,0.027,0.027,239.057,6.004,11.303,13.72,161777.005,290,2.392867163,14.04817381,11.4617286,0 +14,2,0,308,0,0,0,216,0,30,38,0,0,0,0,0,348,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.710804618,0.0,0.024,200.507,5.396,9.777,11.267,135534.871,305,2.363402577,13.85398155,11.30305243,0 +15,2,0,32,0,0,3,663,0,0,9,0,0,3,0,0,402,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,92,116,1.645932162,0.0,0.0,169.13,4.345,9.47,11.166,115389.093,295,2.391096468,13.91387982,11.34976476,0 +16,2,0,0,0,0,3,274,0,16,0,0,0,13,3,0,151,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.687356476,0.0,0.024,200.507,5.396,9.777,11.267,135534.871,305,2.397611539,13.93687801,11.38521225,0 +17,2,0,0,3,0,39,1545,0,6,47,0,0,0,0,0,1868,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,271,0,,,,0,1,0,0,1.612004312,0.127,0.019,216.39,5.495,6.954,8.11,143679.42,271,2.370498215,13.91910624,11.34618226,0 +18,2,0,44,0,0,0,0,0,10,1,0,0,0,0,0,79,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,0,0,1.669718426,0.048,0.051,169.13,4.345,9.47,11.166,115389.093,280,2.385072448,13.99163458,11.41321432,0 +19,2,0,20,0,0,5,23,0,17,15,4,16,2,0,0,130,0,0,PORTLAND,PORTLAND,0,2.4,21.0,10.0,,271,0,,,,0,1,0,0,1.61121629,0.0,0.152,190.39,4.749,6.558,7.558,126687.037,271,2.37226633,13.90717476,11.34319338,0 +20,2,0,5,0,0,0,211,0,3,6,10,0,4,0,0,307,0,0,PORTLAND,PORTLAND,0,2.4,10.0,12.818,,280,0,,,,0,1,0,0,1.672477075,0.0,0.1,168.518,5.076,9.942,11.668,115319.101,280,2.385096937,13.85895891,11.30656692,0 +21,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,9.75,9.045,,246,0,,,,0,1,0,0,1.166340659,0.0,0.0,101.829,5.469,17.432,21.122,78688.764,246,2.358197298,13.69930591,11.24871236,0 +22,3,0,118,3,0,45,1656,0,9,3,0,0,5,0,2,3834,0,0,PORTLAND,PORTLAND,0,2.4,26.0,21.165,,271,0,,,,0,1,0,0,3.650661109,0.0,0.0,133.902,6.866,17.181,20.799,99008.573,271,2.368044163,13.84408252,11.33359268,0 23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,3,,,,0,1,0,0,0.532642246,0.084,0.148,125.048,6.118,24.035,29.251,98751.107,313,2.39382253,13.80017738,11.34752511,0 -24,3,0,0,0,0,99,0,0,0,0,0,0,0,0,0,156,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,302,0,,,,0,1,119,126,0.777286739,0.017,0.048,146.76,7.455,21.609,26.627,110967.498,302,2.396224473,13.81104945,11.3566745,0 -25,3,0,0,0,0,0,79,0,0,0,0,0,0,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.773,,285,0,,,,0,1,0,0,1.140055155,0.0,0.031,134.421,6.939,19.68,24.276,101566.032,285,2.371166222,13.82226862,11.326909,0 -26,3,0,0,0,0,0,17,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,321,0,,,,0,1,1,1,1.32202873,0.032,0.205,113.667,6.836,23.417,29.14,91396.506,321,2.388038691,13.76967208,11.31481788,0 -27,3,0,1,0,0,18,0,0,0,9,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,0,0,1.671739348,0.0,0.0,177.678,5.947,13.839,16.355,124181.307,297,2.39165657,13.87104595,11.33906836,0 -28,3,0,0,0,85,4,185,0,0,0,0,6,27,0,0,469,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.773,,304,0,,,,0,1,0,0,1.672440299,0.0,0.0,165.166,8.291,18.055,21.49,119459.976,304,2.393358962,13.88739992,11.35070281,0 -29,3,0,89,0,30,4,258,0,8,0,1,0,0,0,1,675,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,0,0,1.667603282,0.0,0.101,170.897,8.43,13.674,17.048,120284.629,316,2.397654018,13.91169108,11.37354012,0 -30,3,0,8,0,0,36,17,0,19,0,0,0,0,0,6,62,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,2,2,1.679352385,0.0,0.0,155.664,5.014,12.079,14.107,108653.565,293,2.39147631,13.85838252,11.32692168,0 -31,3,0,0,0,0,6,136,58,3,0,0,0,23,0,0,313,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,319,0,,,,0,1,0,0,1.570842448,0.027,0.151,152.773,8.162,22.667,28.229,115840.997,319,2.361628383,13.7163255,11.23661819,0 -32,3,0,58,0,0,0,1582,0,24,0,0,0,0,0,0,1880,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,1.686619214,0.0,0.0,158.064,6.323,15.039,17.615,112434.22,300,2.393140408,13.87947869,11.34286091,0 +24,3,0,0,0,0,184,0,0,0,0,0,0,0,0,0,192,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,302,0,,,,0,1,119,126,0.777286739,0.017,0.048,146.76,7.455,21.609,26.627,110967.498,302,2.396224473,13.81104945,11.3566745,0 +25,3,0,0,0,0,0,79,0,0,0,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.773,,285,0,,,,0,1,0,0,1.140055155,0.0,0.031,134.421,6.939,19.68,24.276,101566.032,285,2.371166222,13.82226862,11.326909,0 +26,3,0,0,0,0,0,22,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,321,0,,,,0,1,1,1,1.32202873,0.032,0.205,113.667,6.836,23.417,29.14,91396.506,321,2.388038691,13.76967208,11.31481788,0 +27,3,0,0,0,0,13,0,0,0,5,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,0,0,1.671739348,0.0,0.0,177.678,5.947,13.839,16.355,124181.307,297,2.39165657,13.87104595,11.33906836,0 +28,3,0,0,0,220,5,190,0,0,0,0,13,23,0,0,272,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.773,,304,0,,,,0,1,0,0,1.672440299,0.0,0.0,165.166,8.291,18.055,21.49,119459.976,304,2.393358962,13.88739992,11.35070281,0 +29,3,0,100,0,49,4,236,0,10,0,1,0,0,0,2,439,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,0,0,1.667603282,0.0,0.101,170.897,8.43,13.674,17.048,120284.629,316,2.397654018,13.91169108,11.37354012,0 +30,3,0,18,0,0,34,22,0,11,0,0,0,0,0,7,84,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,2,2,1.679352385,0.0,0.0,155.664,5.014,12.079,14.107,108653.565,293,2.39147631,13.85838252,11.32692168,0 +31,3,0,0,0,0,5,323,33,4,0,0,0,54,0,0,432,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,319,0,,,,0,1,0,0,1.570842448,0.027,0.151,152.773,8.162,22.667,28.229,115840.997,319,2.361628383,13.7163255,11.23661819,0 +32,3,0,68,0,0,0,1578,0,13,0,0,0,0,0,0,1826,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,1.686619214,0.0,0.0,158.064,6.323,15.039,17.615,112434.22,300,2.393140408,13.87947869,11.34286091,0 33,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,324,3,,,,0,1,0,0,0.935076068,0.0,0.138,145.171,8.809,19.981,25.41,109171.957,324,2.356500271,13.67998244,11.20588309,0 -34,3,0,0,0,0,0,48,0,3,0,0,0,64,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,313,0,,,,0,1,0,0,1.678629841,0.049,0.051,161.746,8.245,18.122,21.575,117325.92,313,2.397580176,13.9289713,11.41237069,0 -35,3,0,0,0,1195,0,0,0,131,0,0,0,0,0,0,1552,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,277,0,,,,0,1,0,0,1.666972573,0.0,0.0,139.585,6.44,15.121,17.769,100706.584,277,2.362853839,13.84110973,11.34200114,0 -36,3,0,193,0,0,0,5,0,1,0,0,0,0,0,0,159,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,317,0,,,,0,1,0,0,1.577565836,0.1,0.102,179.981,8.036,19.116,22.678,129702.178,317,2.39420798,13.90105733,11.38919243,0 -37,3,0,0,0,0,39,710,0,0,0,0,0,0,0,0,534,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,260,0,,,,0,1,0,0,1.430081362,0.0,0.0,127.317,4.741,13.758,15.799,91594.104,260,2.358586685,13.76740806,11.28967917,0 -38,3,0,0,0,0,47,0,0,0,0,0,0,0,0,0,64,0,23,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,320,0,,,,0,1,39,39,1.228577636,0.049,0.129,145.842,7.585,21.643,27.159,110720.649,320,2.388310803,13.85359444,11.3535492,0 -39,3,0,7,0,0,0,34,0,25,0,0,0,0,0,0,81,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.25,,297,0,,,,0,1,7,7,1.601227114,0.0,0.031,134.421,6.939,19.68,24.276,101566.032,297,2.397521868,13.93699956,11.41802794,0 -40,3,0,26,0,6,8,270,0,0,15,0,0,4,0,9,281,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,3,3,1.185735481,0.056,0.12,127.459,6.244,22.255,27.384,99099.966,314,2.393933442,13.86613974,11.36542067,0 -41,3,0,30,0,0,0,48,0,0,0,0,0,5,0,0,156,0,0,PORTLAND,PORTLAND,0,2.4,12.0,13.182,,272,0,,,,0,1,0,0,1.606891271,0.083,0.094,106.19,2.171,9.6,10.831,74893.058,272,2.373082156,13.75354309,11.23875884,0 -42,3,0,69,5,0,0,250,0,22,5,0,0,0,2,0,271,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,285,0,,,,0,1,26,26,1.670265967,0.0,0.051,155.664,5.014,12.079,14.107,108653.565,285,2.384812884,13.83234357,11.30201504,0 -43,3,0,15,0,0,0,4,0,0,4,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,269,0,,,,0,1,0,0,1.612516524,0.048,0.11,148.194,3.565,9.475,10.97,101865.146,269,2.376456226,13.79636313,11.25178327,0 -44,3,0,0,5,0,0,33,0,80,3,0,0,0,0,0,135,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,277,0,,,,0,1,0,0,1.672437432,0.048,0.1,128.969,3.911,10.727,12.281,90400.271,277,2.384390996,13.81781,11.29221438,0 -45,3,0,0,0,0,0,88,0,1,0,0,0,0,0,0,85,0,0,PORTLAND,PORTLAND,0,2.4,10.25,10.773,,259,0,,,,0,1,113,124,1.629630629,0.0,0.104,129.509,3.933,10.788,12.351,90790.885,259,2.34453131,13.74641643,11.20172875,0 -46,3,0,0,0,0,0,184,0,0,7,0,4,0,0,5,202,0,0,PORTLAND,PORTLAND,0,2.4,15.31,11.364,,268,0,,,,0,1,96,102,1.65295412,0.0,0.052,118.296,4.248,12.586,14.511,84996.492,268,2.357983507,13.7400322,11.25701382,0 -47,3,0,10,0,0,0,18,0,18,0,0,0,0,5,0,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,32,34,1.644068018,0.049,0.104,109.475,3.351,9.474,10.654,76882.9,243,2.338307846,13.68939523,11.19415305,0 -48,3,0,208,0,0,0,17,0,11,0,0,0,0,0,0,175,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.660217244,0.052,0.052,113.892,3.786,13.42,15.722,82952.854,249,2.351760157,13.7651256,11.24845055,0 -49,3,0,70,0,0,0,20,0,15,2,9,0,0,0,0,186,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,230,0,,,,0,1,0,0,1.012346344,0.09,0.108,107.344,3.496,14.031,16.402,79196.845,230,2.314309527,13.55191355,11.06941034,0 +34,3,0,0,0,0,0,46,0,2,0,0,0,42,0,0,93,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,313,0,,,,0,1,0,0,1.678629841,0.049,0.051,161.746,8.245,18.122,21.575,117325.92,313,2.397580176,13.9289713,11.41237069,0 +35,3,0,0,0,493,0,0,0,93,0,0,0,0,0,0,1512,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,277,0,,,,0,1,0,0,1.666972573,0.0,0.0,139.585,6.44,15.121,17.769,100706.584,277,2.362853839,13.84110973,11.34200114,0 +36,3,0,174,0,0,0,7,0,1,0,0,0,0,0,0,197,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,317,0,,,,0,1,0,0,1.577565836,0.1,0.102,179.981,8.036,19.116,22.678,129702.178,317,2.39420798,13.90105733,11.38919243,0 +37,3,0,0,0,0,17,420,0,0,0,0,0,0,0,0,732,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,260,0,,,,0,1,0,0,1.430081362,0.0,0.0,127.317,4.741,13.758,15.799,91594.104,260,2.358586685,13.76740806,11.28967917,0 +38,3,0,0,0,0,23,0,0,0,0,0,0,0,0,0,25,0,23,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,320,0,,,,0,1,39,39,1.228577636,0.049,0.129,145.842,7.585,21.643,27.159,110720.649,320,2.388310803,13.85359444,11.3535492,0 +39,3,0,11,0,0,0,38,0,19,0,0,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.25,,297,0,,,,0,1,7,7,1.601227114,0.0,0.031,134.421,6.939,19.68,24.276,101566.032,297,2.397521868,13.93699956,11.41802794,0 +40,3,0,19,0,6,8,232,0,0,12,0,0,7,0,8,396,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,3,3,1.185735481,0.056,0.12,127.459,6.244,22.255,27.384,99099.966,314,2.393933442,13.86613974,11.36542067,0 +41,3,0,47,0,0,0,42,0,0,0,0,0,3,0,0,74,0,0,PORTLAND,PORTLAND,0,2.4,12.0,13.182,,272,0,,,,0,1,0,0,1.606891271,0.083,0.094,106.19,2.171,9.6,10.831,74893.058,272,2.373082156,13.75354309,11.23875884,0 +42,3,0,88,8,0,0,154,0,33,8,0,0,0,2,0,370,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,285,0,,,,0,1,26,26,1.670265967,0.0,0.051,155.664,5.014,12.079,14.107,108653.565,285,2.384812884,13.83234357,11.30201504,0 +43,3,0,13,0,0,0,5,0,0,4,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,269,0,,,,0,1,0,0,1.612516524,0.048,0.11,148.194,3.565,9.475,10.97,101865.146,269,2.376456226,13.79636313,11.25178327,0 +44,3,0,0,5,0,0,53,0,85,2,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,277,0,,,,0,1,0,0,1.672437432,0.048,0.1,128.969,3.911,10.727,12.281,90400.271,277,2.384390996,13.81781,11.29221438,0 +45,3,0,0,0,0,0,51,0,0,0,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,2.4,10.25,10.773,,259,0,,,,0,1,113,124,1.629630629,0.0,0.104,129.509,3.933,10.788,12.351,90790.885,259,2.34453131,13.74641643,11.20172875,0 +46,3,0,0,0,0,0,210,0,0,9,0,4,0,0,3,294,0,0,PORTLAND,PORTLAND,0,2.4,15.31,11.364,,268,0,,,,0,1,96,102,1.65295412,0.0,0.052,118.296,4.248,12.586,14.511,84996.492,268,2.357983507,13.7400322,11.25701382,0 +47,3,0,17,1,0,0,19,0,11,0,0,0,0,5,0,60,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,32,34,1.644068018,0.049,0.104,109.475,3.351,9.474,10.654,76882.9,243,2.338307846,13.68939523,11.19415305,0 +48,3,0,160,0,0,0,12,0,11,0,0,0,0,0,0,145,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.660217244,0.052,0.052,113.892,3.786,13.42,15.722,82952.854,249,2.351760157,13.7651256,11.24845055,0 +49,3,0,50,0,0,0,12,0,12,4,8,0,0,0,0,115,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,230,0,,,,0,1,0,0,1.012346344,0.09,0.108,107.344,3.496,14.031,16.402,79196.845,230,2.314309527,13.55191355,11.06941034,0 50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,0.355627625,0.109,0.127,97.633,3.395,14.424,16.86,73275.563,240,2.351077912,13.73649406,11.24107666,0 -51,3,0,11,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,9.0,7.326,,233,0,,,,0,1,0,0,1.25408535,0.038,0.056,97.311,3.848,14.781,17.425,73431.056,233,2.343203594,13.60327046,11.16596,0 -52,3,0,68,0,0,0,0,0,0,5,0,0,0,0,0,88,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,226,0,,,,0,1,39,41,1.297356963,0.109,0.127,97.633,3.395,14.424,16.86,73275.563,226,2.300842575,13.41500156,11.00055881,0 +51,3,0,9,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,2.4,9.0,7.326,,233,0,,,,0,1,0,0,1.25408535,0.038,0.056,97.311,3.848,14.781,17.425,73431.056,233,2.343203594,13.60327046,11.16596,0 +52,3,0,80,0,0,0,0,0,0,5,0,0,0,0,0,62,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,226,0,,,,0,1,39,41,1.297356963,0.109,0.127,97.633,3.395,14.424,16.86,73275.563,226,2.300842575,13.41500156,11.00055881,0 53,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,241,3,,,,0,1,0,0,34.69835041,0.045,0.195,80.298,0.913,7.944,8.733,56979.558,241,2.196468098,12.7433786,10.30853572,0 54,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,2.135607885,0.0,0.193,133.938,3.785,6.808,7.425,90472.33,251,2.341737753,13.6030378,11.05164626,0 -55,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.682,,261,0,,,,0,1,0,0,1.704578384,0.083,0.094,106.19,2.171,9.6,10.831,74893.058,261,2.365122666,13.72704547,11.18220496,0 -56,4,0,0,0,0,0,88,278,0,0,0,0,3,0,0,271,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,256,0,,,,0,1,9,9,1.607878715,0.03,0.0,95.976,2.59,8.225,9.262,67352.454,256,2.344205077,13.63727488,11.07443361,0 -57,4,0,8,103,645,38,175,66,0,0,0,3,0,0,0,1184,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,0,0,1.549457173,0.03,0.0,95.976,2.59,8.225,9.262,67352.454,261,2.366293128,13.74029314,11.19636487,0 -58,4,0,37,0,0,0,21,0,30,2,0,0,0,0,0,149,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,246,0,,,,0,1,6,6,1.59134595,0.0,0.047,105.371,2.732,8.029,9.044,73225.926,246,2.314761249,13.56153749,11.00384948,0 -59,4,0,51,0,0,0,31,0,0,0,0,0,0,0,0,82,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,254,0,,,,0,1,0,0,1.549461876,0.0,0.03,104.552,2.722,8.077,9.074,72720.922,254,2.33445254,13.6545628,11.10687403,0 -60,4,0,56,0,0,13,9,0,0,0,0,0,0,0,0,69,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.176,,237,0,,,,0,1,9,9,1.561606728,0.049,0.096,91.493,1.874,8.792,9.91,64898.417,237,2.289501614,13.35591718,10.86708536,0 -61,4,0,46,0,349,0,79,0,25,12,0,0,0,0,0,682,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,241,0,,,,0,1,0,0,1.567388628,0.097,0.138,105.852,2.732,10.177,11.461,75080.191,241,2.304864958,13.52570934,11.01903721,0 -62,4,0,0,0,146,0,0,0,0,0,0,0,0,0,0,166,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,222,3,,,,0,1,0,0,1.946609515,0.073,0.156,81.875,1.21,11.428,12.861,60630.998,222,2.260753044,13.2324369,10.77041428,0 -63,4,0,10,0,0,0,2,0,0,3,0,0,0,1,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,229,0,,,,0,1,22,22,1.49418562,0.073,0.156,81.875,1.21,11.428,12.861,60630.998,229,2.28146733,13.37898527,10.89657097,0 -64,4,0,0,0,0,237,0,0,0,4,0,0,0,0,0,300,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,216,0,,,,0,1,36,36,1.305332659,0.01,0.0,94.825,1.343,14.503,16.585,71302.827,216,2.263504503,13.18233353,10.77331992,0 +55,4,0,0,0,0,0,1,0,0,4,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.682,,261,0,,,,0,1,0,0,1.704578384,0.083,0.094,106.19,2.171,9.6,10.831,74893.058,261,2.365122666,13.72704547,11.18220496,0 +56,4,0,0,0,0,0,97,139,0,0,0,0,3,0,0,250,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,256,0,,,,0,1,9,9,1.607878715,0.03,0.0,95.976,2.59,8.225,9.262,67352.454,256,2.344205077,13.63727488,11.07443361,0 +57,4,0,12,100,1603,33,132,88,0,0,0,2,0,0,0,1726,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,0,0,1.549457173,0.03,0.0,95.976,2.59,8.225,9.262,67352.454,261,2.366293128,13.74029314,11.19636487,0 +58,4,0,84,0,0,0,14,0,54,1,0,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,246,0,,,,0,1,6,6,1.59134595,0.0,0.047,105.371,2.732,8.029,9.044,73225.926,246,2.314761249,13.56153749,11.00384948,0 +59,4,0,20,0,0,0,18,0,0,0,0,0,0,0,0,91,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,254,0,,,,0,1,0,0,1.549461876,0.0,0.03,104.552,2.722,8.077,9.074,72720.922,254,2.33445254,13.6545628,11.10687403,0 +60,4,0,29,0,0,7,6,0,0,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.176,,237,0,,,,0,1,9,9,1.561606728,0.049,0.096,91.493,1.874,8.792,9.91,64898.417,237,2.289501614,13.35591718,10.86708536,0 +61,4,0,32,0,321,0,58,0,33,15,0,0,0,0,0,430,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,241,0,,,,0,1,0,0,1.567388628,0.097,0.138,105.852,2.732,10.177,11.461,75080.191,241,2.304864958,13.52570934,11.01903721,0 +62,4,0,0,0,75,0,0,0,0,0,0,0,0,0,0,116,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,222,3,,,,0,1,0,0,1.946609515,0.073,0.156,81.875,1.21,11.428,12.861,60630.998,222,2.260753044,13.2324369,10.77041428,0 +63,4,0,4,0,0,0,1,0,0,3,0,0,0,1,0,8,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,229,0,,,,0,1,22,22,1.49418562,0.073,0.156,81.875,1.21,11.428,12.861,60630.998,229,2.28146733,13.37898527,10.89657097,0 +64,4,0,0,0,0,268,0,0,0,4,0,0,0,0,0,316,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,216,0,,,,0,1,36,36,1.305332659,0.01,0.0,94.825,1.343,14.503,16.585,71302.827,216,2.263504503,13.18233353,10.77331992,0 65,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,0,,,,0,1,22,22,1.286830302,0.01,0.0,94.825,1.343,14.503,16.585,71302.827,217,2.282981503,13.29971738,10.8948585,0 -66,5,0,0,0,0,0,8,0,30,0,0,0,0,1,0,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,279,0,,,,0,1,1,1,1.604382898,0.0,0.262,124.198,7.9,27.058,34.629,101649.299,279,1.791858449,10.55370215,8.610794874,0 -67,5,0,0,0,0,0,9,0,8,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,11.75,12.6,,293,0,,,,0,1,56,66,1.64536258,0.0,0.262,124.198,7.9,27.058,34.629,101649.299,293,1.888445953,11.06652274,9.094683489,0 -68,5,0,0,0,0,88,0,0,1,0,0,0,0,0,0,56,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.709460849,0.048,0.332,96.866,6.611,28.955,38.065,86355.88,303,2.006132752,11.75446794,9.659839483,0 -69,5,0,9,0,0,60,197,0,139,0,0,0,1,18,0,492,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.0,,309,0,,,,0,1,0,0,1.72362107,0.097,0.194,107.665,7.188,22.243,28.7,87273.736,309,2.031785038,11.83345561,9.734676428,0 -70,5,0,0,0,0,1,0,0,27,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,14.0,10.455,,308,0,,,,0,1,0,0,1.738821269,0.0,0.242,103.86,8.153,25.244,32.797,87460.348,308,2.148258509,12.4944091,10.27725118,0 -71,5,0,45,0,0,6,0,0,0,2,0,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,117,141,1.712904952,0.0,0.292,97.295,7.605,25.291,33.023,83403.83,311,2.156976014,12.54546741,10.32251094,0 +66,5,0,0,0,0,0,5,0,14,0,0,0,0,1,0,20,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,279,0,,,,0,1,1,1,1.604382898,0.0,0.262,124.198,7.9,27.058,34.629,101649.299,279,1.791858449,10.55370215,8.610794874,0 +67,5,0,0,0,0,0,8,0,6,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,11.75,12.6,,293,0,,,,0,1,56,66,1.64536258,0.0,0.262,124.198,7.9,27.058,34.629,101649.299,293,1.888445953,11.06652274,9.094683489,0 +68,5,0,0,0,0,67,0,0,1,0,0,0,0,0,0,100,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.709460849,0.048,0.332,96.866,6.611,28.955,38.065,86355.88,303,2.006132752,11.75446794,9.659839483,0 +69,5,0,4,0,0,54,259,0,132,0,0,0,1,6,0,501,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.0,,309,0,,,,0,1,0,0,1.72362107,0.097,0.194,107.665,7.188,22.243,28.7,87273.736,309,2.031785038,11.83345561,9.734676428,0 +70,5,0,0,0,0,0,0,0,11,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.4,14.0,10.455,,308,0,,,,0,1,0,0,1.738821269,0.0,0.242,103.86,8.153,25.244,32.797,87460.348,308,2.148258509,12.4944091,10.27725118,0 +71,5,0,47,0,0,8,0,0,0,1,0,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,117,141,1.712904952,0.0,0.292,97.295,7.605,25.291,33.023,83403.83,311,2.156976014,12.54546741,10.32251094,0 72,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,0.873064911,0.035,0.347,87.474,6.209,21.682,29.434,74821.197,306,2.119114847,12.25185751,10.08209699,0 -73,5,0,68,0,0,0,69,0,5,24,0,0,19,0,0,113,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,304,0,,,,0,1,7,8,1.547492586,0.0,0.312,86.212,7.215,22.006,29.469,74035.646,304,2.15457416,12.34519206,10.16568304,0 -74,5,0,202,0,0,2,407,0,8,6,0,0,0,0,0,468,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.5,,310,0,,,,0,1,274,341,1.684945568,0.051,0.311,97.878,6.515,26.553,35.14,85131.612,310,2.175356692,12.49152235,10.28975402,0 -75,5,0,45,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,0,0,0.416302334,0.0,0.319,95.703,6.068,24.817,32.566,82091.629,308,2.273252094,13.05606229,10.75230886,0 +73,5,0,52,0,0,0,55,0,4,27,0,0,25,0,0,101,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,304,0,,,,0,1,7,8,1.547492586,0.0,0.312,86.212,7.215,22.006,29.469,74035.646,304,2.15457416,12.34519206,10.16568304,0 +74,5,0,262,0,0,2,334,0,5,3,0,0,0,0,0,590,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.5,,310,0,,,,0,1,274,341,1.684945568,0.051,0.311,97.878,6.515,26.553,35.14,85131.612,310,2.175356692,12.49152235,10.28975402,0 +75,5,0,49,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,0,0,0.416302334,0.0,0.319,95.703,6.068,24.817,32.566,82091.629,308,2.273252094,13.05606229,10.75230886,0 76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,266,0,,,,0,1,18,18,3.086860877,0.098,0.433,28.573,0.982,31.638,43.604,46193.144,266,1.737659763,10.13676321,8.323123124,0 -77,5,0,16,0,0,154,14,0,0,0,0,0,0,0,0,290,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,263,0,,,,0,1,143,154,3.241959842,0.0,0.335,45.223,1.166,25.611,35.41,51604.986,263,1.758679932,10.3392207,8.448876078,0 +77,5,0,12,0,0,124,35,0,0,0,0,0,0,0,0,154,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,263,0,,,,0,1,143,154,3.241959842,0.0,0.335,45.223,1.166,25.611,35.41,51604.986,263,1.758679932,10.3392207,8.448876078,0 78,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.162876608,0.0,0.242,103.86,8.153,25.244,32.797,87460.348,306,2.104111901,12.21087075,10.0433678,0 -79,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,2,30,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,133,160,1.539096375,0.035,0.347,87.474,6.209,21.682,29.434,74821.197,308,2.133877676,12.32476806,10.13795855,0 +79,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,2,30,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,133,160,1.539096375,0.035,0.347,87.474,6.209,21.682,29.434,74821.197,308,2.133877676,12.32476806,10.13795855,0 80,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,288,0,,,,0,1,0,0,1.011005407,0.135,0.317,83.338,8.041,24.112,31.377,73417.55,288,1.853389917,10.78955391,8.872637755,0 81,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,0.990869685,0.135,0.317,83.338,8.041,24.112,31.377,73417.55,300,1.968823812,11.47584119,9.439040261,0 82,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.021717565,0.097,0.194,107.665,7.188,22.243,28.7,87273.736,303,1.997444712,11.60732869,9.546258322,0 -83,6,0,10,0,0,0,45,0,0,0,0,0,0,0,0,45,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,93,93,1.099645142,0.026,0.286,97.772,6.139,25.179,33.274,83869.519,311,2.314896243,13.323545,10.95787138,0 -84,6,0,44,0,0,0,10,0,9,41,0,0,0,0,0,134,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,10,10,1.715653219,0.0,0.234,118.321,7.965,22.481,28.933,94242.602,316,2.342926106,13.48594564,11.08386188,0 -85,6,0,57,0,0,2,11,0,15,0,0,2,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,0,0,0.715088302,0.0,0.236,104.979,6.07,25.275,32.164,87771.683,314,2.381683599,13.73263246,11.28257277,0 -86,6,0,19,33,72,5,96,0,29,23,81,0,0,3,0,279,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,319,0,,,,0,1,0,0,1.562963907,0.039,0.0,166.291,8.231,20.068,26.024,123081.768,319,2.129722368,12.49892834,10.20082124,0 +83,6,0,7,0,0,0,73,0,0,0,0,0,0,0,0,79,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,93,93,1.099645142,0.026,0.286,97.772,6.139,25.179,33.274,83869.519,311,2.314896243,13.323545,10.95787138,0 +84,6,0,53,0,0,0,14,0,6,31,0,0,0,0,0,110,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,10,10,1.715653219,0.0,0.234,118.321,7.965,22.481,28.933,94242.602,316,2.342926106,13.48594564,11.08386188,0 +85,6,0,61,0,0,2,25,0,9,0,0,1,0,0,0,136,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,0,0,0.715088302,0.0,0.236,104.979,6.07,25.275,32.164,87771.683,314,2.381683599,13.73263246,11.28257277,0 +86,6,0,53,23,150,3,89,0,28,11,64,0,0,2,0,391,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,319,0,,,,0,1,0,0,1.562963907,0.039,0.0,166.291,8.231,20.068,26.024,123081.768,319,2.129722368,12.49892834,10.20082124,0 87,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,12,12,1.654593553,0.024,0.063,156.299,9.479,19.866,25.475,116335.36,309,2.079895321,12.27940445,10.01981854,0 -88,6,0,17,0,0,67,16,0,1,0,0,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.4,12.5,12.25,,309,0,,,,0,1,0,0,1.677437686,0.098,0.192,107.665,7.188,22.243,28.7,87273.736,309,2.053480303,12.07351054,9.883688588,0 -89,6,0,1,0,0,0,16,0,0,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,321,0,,,,0,1,0,0,1.599276016,0.01,0.0,142.044,8.448,20.353,26.366,107782.625,321,2.219499405,13.08128299,10.68096433,0 -90,6,0,50,0,0,16,24,0,1,13,0,0,0,0,0,176,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,0,,,,0,1,47,47,1.680443092,0.024,0.063,156.299,9.479,19.866,25.475,116335.36,313,2.187187366,12.85723728,10.52763234,0 -91,6,0,0,0,0,22,68,0,0,0,0,19,0,0,0,122,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,0,0,1.684454234,0.049,0.143,129.241,8.518,25.479,33.329,104045.341,309,2.063150031,12.10864664,9.914927959,0 -92,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,327,0,,,,0,1,0,0,1.592827089,0.01,0.0,142.044,8.448,20.353,26.366,107782.625,327,2.314538923,13.58504707,11.09923645,0 -93,6,0,158,0,0,4,3,0,3,11,0,0,1,0,0,135,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,318,0,,,,0,1,2,2,1.67025626,0.0,0.164,132.29,8.559,25.568,33.539,106130.605,318,2.213688089,12.96419865,10.6269493,0 -94,6,0,151,0,0,24,74,0,28,0,0,0,1,0,0,298,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,0,0,1.671729185,0.0,0.29,97.326,7.572,25.187,32.886,83335.913,314,2.170856101,12.72696165,10.43184116,0 -95,6,0,135,0,0,0,186,0,0,0,0,0,0,0,0,271,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,326,0,,,,0,1,0,0,1.564140236,0.0,0.14,144.9,8.864,20.106,25.57,109101.058,326,2.317679476,13.46106929,11.02611128,0 -96,6,0,44,10,0,106,25,0,1,0,0,1,0,0,0,235,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.182,,317,0,,,,0,1,0,0,1.672847717,0.0,0.188,137.338,8.483,21.747,28.206,105948.29,317,2.301447012,13.34007464,10.92531153,0 -97,6,0,17,288,0,0,156,0,1,0,0,0,1,0,0,248,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.955,,313,0,,,,0,1,26,26,1.671122381,0.0,0.241,131.182,8.398,22.96,30.209,103289.728,313,2.187480054,12.70663201,10.46040288,0 -98,6,0,2,0,0,0,478,0,0,11,4,0,1,0,0,511,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,328,0,,,,0,1,0,0,1.597578647,0.0,0.23,123.52,7.874,22.256,28.634,97379.012,328,2.338674425,13.57521487,11.11899858,0 -99,6,0,8,0,0,0,39,0,0,18,0,0,0,12,0,111,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,318,0,,,,0,1,0,0,1.634670239,0.0,0.236,133.345,8.559,23.319,30.685,104978.875,318,2.316039929,13.4354326,11.00810258,0 -100,6,0,204,0,0,0,28,0,0,8,0,0,4,0,0,124,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,26,26,1.66881824,0.051,0.311,97.878,6.515,26.553,35.14,85131.612,311,2.288273029,13.19916179,10.85398121,0 -101,6,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,11.0,11.136,,321,0,,,,0,1,0,0,1.670818162,0.0,0.181,149.854,8.442,21.81,27.61,113577.142,321,2.349415313,13.62386309,11.1639315,0 -102,6,0,30,0,0,0,0,0,10,5,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,11.795,10.0,,313,0,,,,0,1,9,9,1.598128202,0.0,0.137,169.984,6.084,20.874,26.726,125894.27,313,2.100864726,12.3457292,10.0701353,0 -103,6,0,9,0,0,21,101,0,4,5,15,0,0,1,0,146,0,0,PORTLAND,PORTLAND,0,2.4,11.0,10.0,,300,0,,,,0,1,0,0,1.692732612,0.0,0.189,135.402,5.062,25.708,33.076,107825.96,300,2.052530827,12.12330962,9.887064351,0 -104,6,0,0,0,0,0,113,0,25,0,0,0,0,166,0,244,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,78,78,1.679459716,0.0,0.241,128.075,7.557,26.74,34.131,103811.769,300,2.023319705,11.94246374,9.762028702,0 -105,7,0,33,0,16,10,517,0,6,5,183,0,7,31,0,1139,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.379,,311,0,,,,0,1,0,0,1.671687652,0.024,0.011,227.537,6.617,11.501,13.926,154536.479,311,2.335994677,13.72238346,11.19692452,0 -106,7,0,11,497,585,0,539,0,5,62,0,0,14,0,0,2696,0,0,PORTLAND,PORTLAND,0,2.4,14.0,13.955,,318,0,,,,0,1,0,0,1.579302796,0.078,0.136,172.017,6.565,19.414,24.398,125705.774,318,2.319947181,13.62888286,11.12168731,0 +88,6,0,30,0,0,52,21,0,1,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,12.5,12.25,,309,0,,,,0,1,0,0,1.677437686,0.098,0.192,107.665,7.188,22.243,28.7,87273.736,309,2.053480303,12.07351054,9.883688588,0 +89,6,0,0,0,0,0,16,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,321,0,,,,0,1,0,0,1.599276016,0.01,0.0,142.044,8.448,20.353,26.366,107782.625,321,2.219499405,13.08128299,10.68096433,0 +90,6,0,121,0,0,17,52,0,2,23,0,0,0,0,0,116,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,0,,,,0,1,47,47,1.680443092,0.024,0.063,156.299,9.479,19.866,25.475,116335.36,313,2.187187366,12.85723728,10.52763234,0 +91,6,0,0,0,0,28,41,0,0,0,0,13,0,0,0,139,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,0,0,1.684454234,0.049,0.143,129.241,8.518,25.479,33.329,104045.341,309,2.063150031,12.10864664,9.914927959,0 +92,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,327,0,,,,0,1,0,0,1.592827089,0.01,0.0,142.044,8.448,20.353,26.366,107782.625,327,2.314538923,13.58504707,11.09923645,0 +93,6,0,152,0,0,3,2,0,4,20,0,0,1,0,0,141,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,318,0,,,,0,1,2,2,1.67025626,0.0,0.164,132.29,8.559,25.568,33.539,106130.605,318,2.213688089,12.96419865,10.6269493,0 +94,6,0,206,0,0,16,81,0,21,0,0,0,2,0,0,260,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,0,0,1.671729185,0.0,0.29,97.326,7.572,25.187,32.886,83335.913,314,2.170856101,12.72696165,10.43184116,0 +95,6,0,189,0,0,0,105,0,0,0,0,0,0,0,0,374,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,326,0,,,,0,1,0,0,1.564140236,0.0,0.14,144.9,8.864,20.106,25.57,109101.058,326,2.317679476,13.46106929,11.02611128,0 +96,6,0,46,7,0,116,53,0,1,0,0,0,0,0,0,247,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.182,,317,0,,,,0,1,0,0,1.672847717,0.0,0.188,137.338,8.483,21.747,28.206,105948.29,317,2.301447012,13.34007464,10.92531153,0 +97,6,0,12,312,0,0,209,0,0,0,0,1,1,0,0,407,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.955,,313,0,,,,0,1,26,26,1.671122381,0.0,0.241,131.182,8.398,22.96,30.209,103289.728,313,2.187480054,12.70663201,10.46040288,0 +98,6,0,1,0,0,0,636,0,0,14,5,0,0,0,0,448,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,328,0,,,,0,1,0,0,1.597578647,0.0,0.23,123.52,7.874,22.256,28.634,97379.012,328,2.338674425,13.57521487,11.11899858,0 +99,6,0,8,0,0,0,43,0,0,29,0,0,0,6,0,111,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,318,0,,,,0,1,0,0,1.634670239,0.0,0.236,133.345,8.559,23.319,30.685,104978.875,318,2.316039929,13.4354326,11.00810258,0 +100,6,0,152,0,0,0,52,0,0,5,0,0,3,0,0,232,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,26,26,1.66881824,0.051,0.311,97.878,6.515,26.553,35.14,85131.612,311,2.288273029,13.19916179,10.85398121,0 +101,6,0,0,0,0,0,20,0,0,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,11.0,11.136,,321,0,,,,0,1,0,0,1.670818162,0.0,0.181,149.854,8.442,21.81,27.61,113577.142,321,2.349415313,13.62386309,11.1639315,0 +102,6,0,27,0,0,0,0,0,8,4,0,0,0,0,0,67,0,0,PORTLAND,PORTLAND,0,2.4,11.795,10.0,,313,0,,,,0,1,9,9,1.598128202,0.0,0.137,169.984,6.084,20.874,26.726,125894.27,313,2.100864726,12.3457292,10.0701353,0 +103,6,0,8,0,0,37,50,0,5,7,14,0,1,0,0,225,0,0,PORTLAND,PORTLAND,0,2.4,11.0,10.0,,300,0,,,,0,1,0,0,1.692732612,0.0,0.189,135.402,5.062,25.708,33.076,107825.96,300,2.052530827,12.12330962,9.887064351,0 +104,6,0,0,0,0,0,54,0,20,0,0,0,0,168,0,160,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,78,78,1.679459716,0.0,0.241,128.075,7.557,26.74,34.131,103811.769,300,2.023319705,11.94246374,9.762028702,0 +105,7,0,40,0,24,16,515,0,17,11,90,0,8,34,0,1375,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.379,,311,0,,,,0,1,0,0,1.671687652,0.024,0.011,227.537,6.617,11.501,13.926,154536.479,311,2.335994677,13.72238346,11.19692452,0 +106,7,0,6,309,391,0,1334,0,13,30,0,0,16,0,0,1717,0,0,PORTLAND,PORTLAND,0,2.4,14.0,13.955,,318,0,,,,0,1,0,0,1.579302796,0.078,0.136,172.017,6.565,19.414,24.398,125705.774,318,2.319947181,13.62888286,11.12168731,0 107,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,326,3,,,,0,1,0,0,0.891406888,0.049,0.137,169.984,6.084,20.874,26.726,125894.27,326,2.211855311,12.99126491,10.60244372,0 -108,7,0,28,0,14,0,25,0,0,0,0,0,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,3,,,,0,1,0,0,1.686009594,0.024,0.011,227.537,6.617,11.501,13.926,154536.479,315,2.342639371,13.75454169,11.22147182,0 -109,7,0,0,0,0,0,1,0,0,296,0,0,0,0,0,335,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,325,0,,,,0,1,0,0,1.583284049,0.05,0.087,183.593,6.705,16.471,21.057,130976.032,325,2.324114028,13.63924724,11.1362366,0 -110,7,0,0,0,0,0,384,0,0,2,0,2,0,0,0,476,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,329,0,,,,0,1,168,215,0.882896182,0.049,0.01,168.79,8.126,19.706,25.469,124325.257,329,2.316547048,13.59218132,11.09800743,0 -111,7,0,1,5,0,5,350,0,49,21,0,0,0,13,3,340,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,318,0,,,,0,1,0,0,1.651704008,0.0,0.021,189.983,7.225,16.835,21.335,135243.666,318,2.34798367,13.75715754,11.2261413,0 -112,7,0,34,0,0,0,40,0,14,0,0,0,15,0,0,123,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,323,0,,,,0,1,25,30,1.581495622,0.0,0.069,150.013,8.589,19.401,24.39,111618.264,323,2.337493681,13.67450755,11.15924236,0 -113,7,0,1,0,0,0,7,0,0,12,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,325,0,,,,0,1,82,105,0.896503571,0.0,0.041,156.517,8.567,19.548,25.024,116185.9,325,2.319474643,13.61797006,11.12597276,0 -114,7,0,119,0,0,0,218,0,1,14,0,0,0,37,0,187,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.545,,315,0,,,,0,1,0,0,1.645333734,0.0,0.053,182.62,5.859,19.031,23.244,131752.737,315,2.365070635,13.74086562,11.22635899,0 -115,7,0,1,0,0,0,258,0,8,58,0,26,0,0,0,562,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,329,0,,,,0,1,0,0,1.583049388,0.0,0.103,169.84,8.478,13.87,17.37,119814.46,329,2.347729774,13.62059772,11.13472266,0 -116,7,0,114,0,0,0,43,0,1,8,0,0,0,0,0,164,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,327,0,,,,0,1,0,0,0.925368394,0.0,0.09,157.576,8.509,17.841,22.247,115086.913,327,2.342569509,13.60927582,11.14828346,0 -117,7,0,255,0,0,0,11,0,0,0,0,0,0,0,0,296,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.670504943,0.0,0.052,171.857,4.655,14.022,18.491,121823.0,305,2.245352357,13.1913407,10.76025318,0 -118,7,0,0,0,0,0,50,0,0,14,0,0,0,0,0,160,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,312,0,,,,0,1,183,237,1.587565966,0.0,0.102,192.334,5.874,17.096,22.588,137550.421,312,2.214902203,13.01562733,10.61635471,0 -119,7,0,74,0,0,0,0,0,23,0,0,0,0,0,0,119,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,321,0,,,,0,1,0,0,0.870946537,0.0,0.13,172.65,5.909,21.684,27.64,128185.681,321,2.127616065,12.50603509,10.20220298,0 -120,8,0,5,107,537,0,0,0,0,0,0,0,0,0,0,588,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,3,,,,0,1,0,0,2.210298984,0.041,0.325,121.556,1.304,2.818,3.795,80224.58,227,2.330621117,13.72336571,11.0608255,0 -121,8,0,7,0,45,0,0,0,0,0,0,0,0,0,0,45,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.955,,239,0,,,,0,1,0,0,1.569431939,0.0,0.154,195.664,3.22,10.86,15.766,135315.177,239,2.366049696,14.10397287,11.38098034,0 +108,7,0,27,0,14,0,48,0,0,0,0,0,0,0,0,87,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,3,,,,0,1,0,0,1.686009594,0.024,0.011,227.537,6.617,11.501,13.926,154536.479,315,2.342639371,13.75454169,11.22147182,0 +109,7,0,0,0,0,0,3,0,0,172,0,0,0,0,0,158,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,325,0,,,,0,1,0,0,1.583284049,0.05,0.087,183.593,6.705,16.471,21.057,130976.032,325,2.324114028,13.63924724,11.1362366,0 +110,7,0,0,0,0,0,553,0,0,2,0,5,0,0,0,238,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,329,0,,,,0,1,168,215,0.882896182,0.049,0.01,168.79,8.126,19.706,25.469,124325.257,329,2.316547048,13.59218132,11.09800743,0 +111,7,0,1,4,0,5,317,0,31,22,0,0,1,22,9,264,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,318,0,,,,0,1,0,0,1.651704008,0.0,0.021,189.983,7.225,16.835,21.335,135243.666,318,2.34798367,13.75715754,11.2261413,0 +112,7,0,92,0,0,0,41,0,5,0,0,0,18,0,0,158,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,323,0,,,,0,1,25,30,1.581495622,0.0,0.069,150.013,8.589,19.401,24.39,111618.264,323,2.337493681,13.67450755,11.15924236,0 +113,7,0,2,0,0,0,6,0,0,14,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,325,0,,,,0,1,82,105,0.896503571,0.0,0.041,156.517,8.567,19.548,25.024,116185.9,325,2.319474643,13.61797006,11.12597276,0 +114,7,0,98,0,0,0,130,0,1,7,0,0,0,29,0,452,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.545,,315,0,,,,0,1,0,0,1.645333734,0.0,0.053,182.62,5.859,19.031,23.244,131752.737,315,2.365070635,13.74086562,11.22635899,0 +115,7,0,2,0,0,0,319,0,13,36,0,37,0,0,0,399,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,329,0,,,,0,1,0,0,1.583049388,0.0,0.103,169.84,8.478,13.87,17.37,119814.46,329,2.347729774,13.62059772,11.13472266,0 +116,7,0,193,0,0,0,38,0,3,7,0,0,0,0,0,227,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,327,0,,,,0,1,0,0,0.925368394,0.0,0.09,157.576,8.509,17.841,22.247,115086.913,327,2.342569509,13.60927582,11.14828346,0 +117,7,0,245,0,0,0,5,0,0,0,0,0,0,0,0,224,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.670504943,0.0,0.052,171.857,4.655,14.022,18.491,121823.0,305,2.245352357,13.1913407,10.76025318,0 +118,7,0,0,0,0,0,77,0,0,24,0,0,0,0,0,171,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,312,0,,,,0,1,183,237,1.587565966,0.0,0.102,192.334,5.874,17.096,22.588,137550.421,312,2.214902203,13.01562733,10.61635471,0 +119,7,0,60,0,0,0,0,0,16,0,0,0,0,0,0,73,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,321,0,,,,0,1,0,0,0.870946537,0.0,0.13,172.65,5.909,21.684,27.64,128185.681,321,2.127616065,12.50603509,10.20220298,0 +120,8,0,3,171,666,0,0,0,0,0,0,0,0,0,0,801,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,3,,,,0,1,0,0,2.210298984,0.041,0.325,121.556,1.304,2.818,3.795,80224.58,227,2.330621117,13.72336571,11.0608255,0 +121,8,0,3,0,53,0,0,0,0,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.955,,239,0,,,,0,1,0,0,1.569431939,0.0,0.154,195.664,3.22,10.86,15.766,135315.177,239,2.366049696,14.10397287,11.38098034,0 122,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,237,0,,,,0,1,0,0,1.795161075,0.0,0.234,147.813,2.233,6.226,8.723,100182.691,237,2.331026265,13.76121772,11.09970971,0 -123,8,0,12,0,4,0,261,0,90,0,0,0,0,0,0,255,0,0,PORTLAND,PORTLAND,0,2.4,25.0,11.818,,247,0,,,,0,1,0,0,1.532871605,0.028,0.28,121.997,0.995,5.647,8.06,83236.391,247,2.364416039,14.08832424,11.39133306,0 +123,8,0,15,0,10,0,310,0,82,0,0,0,0,0,0,316,0,0,PORTLAND,PORTLAND,0,2.4,25.0,11.818,,247,0,,,,0,1,0,0,1.532871605,0.028,0.28,121.997,0.995,5.647,8.06,83236.391,247,2.364416039,14.08832424,11.39133306,0 124,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.738420656,0.127,0.259,105.978,1.801,2.679,3.556,70102.008,240,2.330751632,13.63467585,11.02386529,0 -125,8,0,13,29,458,10,734,0,56,0,0,0,2,0,13,931,0,0,PORTLAND,PORTLAND,0,2.4,19.0,15.467,,254,0,,,,0,1,2,2,1.536662585,0.0,0.155,185.421,4.89,9.662,12.201,126478.351,254,2.362362294,13.9390471,11.30692564,0 -126,8,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.136,,250,0,,,,0,1,0,0,1.663224841,0.05,0.184,174.256,4.766,6.201,8.354,116870.206,250,2.330361289,13.64007054,11.02873812,0 -127,8,0,5,2,66,132,3045,0,28,0,0,0,20,95,3,1854,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,0,0,1.563210437,0.098,0.137,213.89,5.801,4.618,5.62,140486.364,262,2.363091667,13.92213049,11.30065252,0 -128,8,0,27,18,0,168,214,0,1,0,0,0,0,0,0,331,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,244,0,,,,0,1,3,3,1.68958257,0.18,0.187,172.305,5.346,2.954,3.511,112522.483,244,2.325778507,13.61845206,11.01944791,0 -129,8,0,18,0,0,1,166,0,9,0,0,7,0,3,0,264,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,1,1,1.552543733,0.125,0.0,150.114,4.873,5.272,6.151,100009.489,259,2.366230308,13.93328369,11.31944993,0 -130,8,0,35,0,0,0,76,0,5,0,12,0,0,0,0,140,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,1.65834922,0.157,0.032,178.861,5.017,5.151,5.993,118306.574,251,2.344475118,13.8480131,11.23054443,0 -131,8,0,6,0,0,0,18,0,0,0,0,0,0,184,0,260,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.55,,259,0,,,,0,1,0,0,1.553819463,0.125,0.0,150.114,4.873,5.272,6.151,100009.489,259,2.359586516,13.90599716,11.29159912,0 -132,8,0,1,0,0,0,1,0,0,0,33,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,233,3,,,,0,1,25,25,39.30413335,0.246,0.207,130.019,3.842,3.112,3.698,85578.847,233,2.272778149,13.30119018,10.74447111,0 -133,8,0,0,0,0,0,670,0,2,0,0,0,0,0,0,757,0,0,PORTLAND,PORTLAND,0,2.4,25.0,10.227,,263,0,,,,0,1,0,0,1.524291565,0.049,0.043,190.39,4.749,6.558,7.558,126687.037,263,2.362203927,13.9179291,11.30514109,0 +125,8,0,11,30,211,8,316,0,50,0,0,1,1,0,6,1219,0,0,PORTLAND,PORTLAND,0,2.4,19.0,15.467,,254,0,,,,0,1,2,2,1.536662585,0.0,0.155,185.421,4.89,9.662,12.201,126478.351,254,2.362362294,13.9390471,11.30692564,0 +126,8,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.136,,250,0,,,,0,1,0,0,1.663224841,0.05,0.184,174.256,4.766,6.201,8.354,116870.206,250,2.330361289,13.64007054,11.02873812,0 +127,8,0,11,1,83,130,1598,0,22,0,0,0,18,48,2,2937,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,0,0,1.563210437,0.098,0.137,213.89,5.801,4.618,5.62,140486.364,262,2.363091667,13.92213049,11.30065252,0 +128,8,0,34,17,0,150,231,0,0,0,0,0,0,0,0,492,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,244,0,,,,0,1,3,3,1.68958257,0.18,0.187,172.305,5.346,2.954,3.511,112522.483,244,2.325778507,13.61845206,11.01944791,0 +129,8,0,21,0,0,1,95,0,6,0,0,12,0,3,0,191,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,1,1,1.552543733,0.125,0.0,150.114,4.873,5.272,6.151,100009.489,259,2.366230308,13.93328369,11.31944993,0 +130,8,0,50,0,0,0,111,0,3,0,21,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,1.65834922,0.157,0.032,178.861,5.017,5.151,5.993,118306.574,251,2.344475118,13.8480131,11.23054443,0 +131,8,0,11,0,0,0,12,0,0,0,0,0,0,131,0,101,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.55,,259,0,,,,0,1,0,0,1.553819463,0.125,0.0,150.114,4.873,5.272,6.151,100009.489,259,2.359586516,13.90599716,11.29159912,0 +132,8,0,1,0,0,0,1,0,0,0,29,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,233,3,,,,0,1,25,25,39.30413335,0.246,0.207,130.019,3.842,3.112,3.698,85578.847,233,2.272778149,13.30119018,10.74447111,0 +133,8,0,0,0,0,0,374,0,1,0,1,0,0,0,0,887,0,0,PORTLAND,PORTLAND,0,2.4,25.0,10.227,,263,0,,,,0,1,0,0,1.524291565,0.049,0.043,190.39,4.749,6.558,7.558,126687.037,263,2.362203927,13.9179291,11.30514109,0 134,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,2.788012128,0.26,0.223,87.125,3.247,1.119,1.176,56513.159,259,2.343686378,13.8233017,11.21040721,0 135,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,15.0,11.591,,263,0,,,,0,1,0,0,1.411800625,0.0,0.15,144.857,3.545,6.84,7.612,97580.212,263,2.359746095,13.87172697,11.28804216,0 -136,9,0,0,0,0,0,19,0,0,0,217,0,0,0,0,217,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,284,0,,,,0,1,0,0,3.284074829,0.096,0.282,140.871,5.225,28.814,36.131,113281.416,284,1.981887876,11.66617913,9.508496895,0 -137,9,0,11,0,0,82,104,0,0,7,0,0,0,0,0,178,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,352,440,3.334793938,0.0,0.332,70.793,1.303,32.208,42.774,72682.512,274,1.959716137,11.52998435,9.388218417,0 -138,9,0,7,16,0,6,51,0,0,0,0,0,0,105,0,83,136,118,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,0,,,,0,1,537,698,3.340609601,0.0,0.332,70.793,1.303,32.208,42.774,72682.512,269,1.814513831,10.7135412,8.724364619,0 -139,9,0,13,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.617,,301,0,,,,0,1,40,43,1.622855185,0.0,0.186,139.16,5.044,25.261,32.525,109878.093,301,1.99126338,11.70831157,9.546809485,0 -140,9,0,0,0,0,10,51,0,29,0,0,0,0,0,0,119,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.617,,286,0,,,,0,1,81,92,1.659580633,0.0,0.341,110.452,4.57,28.031,36.511,94056.124,286,1.956576118,11.58353212,9.444994522,0 +136,9,0,0,0,0,0,15,0,0,0,240,0,0,0,0,188,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,284,0,,,,0,1,0,0,3.284074829,0.096,0.282,140.871,5.225,28.814,36.131,113281.416,284,1.981887876,11.66617913,9.508496895,0 +137,9,0,11,0,0,77,85,0,0,3,0,0,0,0,0,299,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,352,440,3.334793938,0.0,0.332,70.793,1.303,32.208,42.774,72682.512,274,1.959716137,11.52998435,9.388218417,0 +138,9,0,6,10,0,9,60,0,0,0,0,0,0,101,0,106,136,118,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,0,,,,0,1,537,698,3.340609601,0.0,0.332,70.793,1.303,32.208,42.774,72682.512,269,1.814513831,10.7135412,8.724364619,0 +139,9,0,10,0,0,0,0,0,0,0,0,0,0,1,0,13,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.617,,301,0,,,,0,1,40,43,1.622855185,0.0,0.186,139.16,5.044,25.261,32.525,109878.093,301,1.99126338,11.70831157,9.546809485,0 +140,9,0,0,0,0,19,31,0,26,0,0,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.617,,286,0,,,,0,1,81,92,1.659580633,0.0,0.341,110.452,4.57,28.031,36.511,94056.124,286,1.956576118,11.58353212,9.444994522,0 141,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,9.25,12.075,,288,0,,,,0,1,14,15,1.660433906,0.048,0.289,104.753,6.267,28.402,36.954,90692.555,288,1.920068992,11.38067744,9.281178869,0 -142,10,0,0,0,0,0,5,0,14,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,41,48,1.66585152,0.0,0.0,221.726,5.841,17.12,23.523,156958.885,274,2.09612963,12.3874754,10.06892872,0 -143,10,0,64,0,0,0,4,0,5,0,46,0,0,0,0,119,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,283,0,,,,0,1,64,81,1.579864821,0.0,0.152,147.949,3.836,21.036,27.44,112248.99,283,2.024137669,11.90278667,9.694602885,0 +142,10,0,0,0,0,0,4,0,37,0,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,41,48,1.66585152,0.0,0.0,221.726,5.841,17.12,23.523,156958.885,274,2.09612963,12.3874754,10.06892872,0 +143,10,0,49,0,0,0,8,0,6,0,49,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,283,0,,,,0,1,64,81,1.579864821,0.0,0.152,147.949,3.836,21.036,27.44,112248.99,283,2.024137669,11.90278667,9.694602885,0 144,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,287,3,,,,0,1,0,0,0.822243542,0.0,0.179,111.29,2.866,23.463,30.429,90700.046,287,1.973201742,11.62044194,9.455665007,0 -145,10,0,0,0,78,0,19,0,9,0,1,0,0,5,0,91,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,288,0,,,,0,1,0,0,1.672790486,0.0,0.053,187.79,5.079,21.723,28.602,138491.021,288,2.126773549,12.51149843,10.17573302,0 -146,10,0,23,0,207,0,5,0,0,0,8,0,0,0,0,316,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,0,,,,0,1,10,10,1.593550518,0.05,0.103,174.86,4.599,19.637,25.795,128419.675,292,2.045725447,12.02135264,9.795951714,0 +145,10,0,0,0,83,0,13,0,13,0,1,0,0,14,0,141,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,288,0,,,,0,1,0,0,1.672790486,0.0,0.053,187.79,5.079,21.723,28.602,138491.021,288,2.126773549,12.51149843,10.17573302,0 +146,10,0,56,0,262,0,2,0,0,0,6,0,0,0,0,253,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,0,,,,0,1,10,10,1.593550518,0.05,0.103,174.86,4.599,19.637,25.795,128419.675,292,2.045725447,12.02135264,9.795951714,0 147,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,294,3,,,,0,1,0,0,0.835633791,0.096,0.282,140.871,5.225,28.814,36.131,113281.416,294,2.015545059,11.8730875,9.672697707,0 -148,10,0,0,0,2,1,414,0,3,2,10,406,0,0,0,913,0,0,PORTLAND,PORTLAND,0,2.4,14.641,11.364,,294,0,,,,0,1,1,1,1.681316368,0.0,0.102,174.408,4.628,20.632,27.263,129069.538,294,2.239941104,13.15778964,10.72752735,0 -149,10,0,45,0,0,0,0,0,0,1,0,0,0,0,0,88,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,1.592410327,0.049,0.151,172.434,5.514,21.856,27.71,128092.084,300,2.097029276,12.32549528,10.05098656,0 +148,10,0,0,0,1,1,273,0,4,1,7,248,0,0,0,742,0,0,PORTLAND,PORTLAND,0,2.4,14.641,11.364,,294,0,,,,0,1,1,1,1.681316368,0.0,0.102,174.408,4.628,20.632,27.263,129069.538,294,2.239941104,13.15778964,10.72752735,0 +149,10,0,74,0,0,0,0,0,0,2,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,1.592410327,0.049,0.151,172.434,5.514,21.856,27.71,128092.084,300,2.097029276,12.32549528,10.05098656,0 150,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,307,3,,,,0,1,0,0,0.834312652,0.048,0.234,147.735,6.512,27.686,34.801,116823.093,307,2.0252014,11.8922057,9.699273003,0 -151,11,0,0,0,158,0,19,0,0,0,0,2,0,0,0,174,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,0,0,1.657625463,0.0,0.0,193.94,4.654,25.375,35.478,146827.969,262,2.146513926,12.70616924,10.32307569,0 -152,11,0,5,0,0,0,915,0,0,0,2,0,27,0,0,1224,0,0,PORTLAND,PORTLAND,0,2.4,24.0,11.818,,267,0,,,,0,1,0,0,1.652424971,0.0,0.0,221.726,5.841,17.12,23.523,156958.885,267,2.123376035,12.55868644,10.20591283,0 -153,11,0,0,0,1286,26,2,0,2,0,0,0,0,21,0,1429,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,264,0,,,,0,1,0,0,1.670870936,0.023,0.074,180.934,4.871,11.936,15.856,125946.083,264,2.340504491,13.7580056,11.18310673,0 -154,11,0,0,0,0,0,265,0,5,0,0,0,0,2,0,198,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,279,0,,,,0,1,0,0,1.679072996,0.0,0.025,220.857,6.01,13.901,19.542,153855.073,279,2.239133535,13.15524929,10.69641308,0 -155,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,275,0,,,,0,1,0,0,1.666420507,0.0,0.0,218.255,5.316,15.955,21.748,153602.078,275,2.342285045,13.75701963,11.18769083,0 -156,11,0,55,1,178,10,567,0,29,1,0,0,4,3,2,1038,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,286,0,,,,0,1,0,0,1.667903013,0.0,0.025,213.341,5.766,15.783,21.163,150082.907,286,2.254810296,13.24662423,10.77568252,0 -157,11,0,0,5,1660,0,5,0,4,0,0,0,0,0,1,2042,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.672614272,0.0,0.102,156.408,4.131,12.221,17.468,111280.64,249,2.391740154,14.19561117,11.51303621,0 +151,11,0,0,0,109,0,46,0,0,0,0,5,0,0,0,174,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,0,0,1.657625463,0.0,0.0,193.94,4.654,25.375,35.478,146827.969,262,2.146513926,12.70616924,10.32307569,0 +152,11,0,9,0,0,0,1050,0,0,0,2,0,26,0,0,804,0,0,PORTLAND,PORTLAND,0,2.4,24.0,11.818,,267,0,,,,0,1,0,0,1.652424971,0.0,0.0,221.726,5.841,17.12,23.523,156958.885,267,2.123376035,12.55868644,10.20591283,0 +153,11,0,0,0,1302,19,2,0,1,0,0,0,0,28,0,991,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,264,0,,,,0,1,0,0,1.670870936,0.023,0.074,180.934,4.871,11.936,15.856,125946.083,264,2.340504491,13.7580056,11.18310673,0 +154,11,0,0,0,0,0,290,0,6,0,0,0,0,1,0,372,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,279,0,,,,0,1,0,0,1.679072996,0.0,0.025,220.857,6.01,13.901,19.542,153855.073,279,2.239133535,13.15524929,10.69641308,0 +155,11,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,275,0,,,,0,1,0,0,1.666420507,0.0,0.0,218.255,5.316,15.955,21.748,153602.078,275,2.342285045,13.75701963,11.18769083,0 +156,11,0,25,2,173,9,623,0,12,1,0,0,3,5,1,458,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,286,0,,,,0,1,0,0,1.667903013,0.0,0.025,213.341,5.766,15.783,21.163,150082.907,286,2.254810296,13.24662423,10.77568252,0 +157,11,0,0,7,983,0,3,0,4,0,0,0,0,0,1,1036,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.672614272,0.0,0.102,156.408,4.131,12.221,17.468,111280.64,249,2.391740154,14.19561117,11.51303621,0 158,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,3,,,,0,1,0,0,1.742631703,0.0,0.051,169.887,4.432,16.739,23.242,123602.928,251,2.357680333,13.99140925,11.3489443,0 -159,11,0,19,3,661,0,0,0,0,0,0,0,0,0,0,735,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,252,0,,,,0,1,0,0,1.548312582,0.0,0.151,192.656,3.34,10.576,15.371,133137.215,252,2.375337496,14.05062603,11.39883911,0 +159,11,0,16,1,529,0,0,0,0,0,0,0,0,0,0,1103,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,252,0,,,,0,1,0,0,1.548312582,0.0,0.151,192.656,3.34,10.576,15.371,133137.215,252,2.375337496,14.05062603,11.39883911,0 160,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,268,3,,,,0,1,0,0,1.729982826,0.0,0.051,185.323,4.829,12.455,16.658,129267.743,268,2.356445243,13.85079198,11.25763052,0 161,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,257,3,,,,0,1,0,0,1.656989073,0.023,0.074,180.934,4.871,11.936,15.856,125946.083,257,2.354572136,13.91208993,11.30669731,0 -162,11,0,0,1,235,0,12,0,0,0,0,0,0,0,0,536,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,1.623915698,0.0,0.103,180.253,4.9,11.956,15.883,125527.318,259,2.373527194,13.98365355,11.344922,0 -163,12,0,0,0,0,0,4,0,0,103,0,0,0,0,0,113,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,0,,,,0,1,134,183,1.668109438,0.0,0.232,108.933,2.646,23.545,30.961,89532.139,255,1.892895305,11.10334691,9.012033528,0 -164,12,0,0,0,0,20,1,0,0,0,0,0,0,0,0,33,10,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,132,179,1.629064898,0.0,0.18,110.289,2.792,24.636,32.488,91377.586,261,1.952710024,11.51279919,9.362261339,0 -165,12,0,6,0,0,1,4,0,2,4,0,0,3,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,241,0,,,,0,1,168,245,1.625728255,0.0,0.18,120.792,2.901,28.44,36.447,100632.981,241,1.886320534,11.16043302,9.046397968,0 -166,12,0,0,0,0,4,4,0,0,0,0,0,0,0,2,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,232,0,,,,0,1,129,185,1.657591436,0.0,0.232,89.999,1.477,31.031,40.24,83353.014,232,1.81372781,10.70255917,8.685018685,0 -167,12,0,6,0,0,1,0,0,3,0,0,0,0,2,0,16,0,0,PORTLAND,PORTLAND,0,2.4,11.75,10.682,,250,0,,,,0,1,121,162,1.645444303,0.0,0.23,109.224,2.653,23.607,31.043,89770.828,250,1.924409249,11.35618938,9.217923406,0 -168,12,0,0,0,0,0,3,0,0,0,9,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.227,,239,0,,,,0,1,83,110,1.67419367,0.0,0.307,45.087,1.02,26.71,35.018,51266.863,239,1.862908794,10.98516394,8.941438852,0 -169,13,0,0,0,0,0,1,0,0,8,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,75,86,1.669106877,0.0,0.285,98.232,2.534,28.64,38.85,87732.553,253,1.759533099,10.35933994,8.433593158,0 -170,13,0,0,0,0,0,13,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,233,0,,,,0,1,288,334,1.664580647,0.052,0.284,45.626,0.973,26.674,35.505,51923.819,233,1.659809201,9.881264531,8.011679737,0 -171,13,0,0,0,0,0,31,0,0,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.227,,235,0,,,,0,1,283,332,1.664641972,0.024,0.309,77.302,2.634,31.311,41.58,76084.665,235,1.701591679,10.02416853,8.148730782,0 -172,14,0,0,0,38,0,0,0,0,0,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,247,0,,,,0,1,0,0,1.674643706,0.0,0.052,170.195,2.085,24.945,35.487,131636.939,247,1.973396862,11.69948998,9.437924832,0 -173,14,0,0,0,226,0,28,0,3,0,0,0,1,278,0,768,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,0,0,1.673076673,0.0,0.014,162.494,1.229,18.497,28.001,121917.258,253,1.999836078,11.8675534,9.56224595,0 -174,14,0,2,0,0,0,44,0,7,6,0,0,1,15,0,63,0,0,PORTLAND,PORTLAND,0,2.4,13.25,10.682,,271,0,,,,0,1,305,495,1.602403938,0.0,0.102,156.841,3.784,23.292,30.74,120051.917,271,1.993432069,11.79748434,9.579975719,0 -175,14,0,0,0,0,0,203,0,1,0,0,0,0,0,0,186,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,267,0,,,,0,1,0,0,1.673979465,0.0,0.052,177.183,4.026,25.261,33.133,134602.003,267,2.056612534,12.1723577,9.882896755,0 -176,14,0,0,0,0,0,11,0,1,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,196,2.4,20.0,16.281,,251,0,,,,0,1,117,182,1.696013806,0.0,0.0,160.024,1.207,17.831,26.992,119690.095,251,1.864681613,11.04602212,8.92272043,0 -177,14,0,13,0,0,2,109,0,0,0,0,0,0,0,0,94,0,0,PORTLAND,PORTLAND,0,2.4,12.95,10.542,,259,0,,,,0,1,0,0,1.673560068,0.0,0.0,188.235,4.411,23.39,32.472,141252.203,259,2.089879367,12.37995361,10.04421242,0 -178,14,0,3,1,0,0,1964,36,0,1,0,0,118,0,0,2233,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,256,0,,,,0,1,1,1,1.661970657,0.0,0.0,189.28,3.326,22.265,31.477,141284.673,256,2.122784278,12.57321271,10.19667622,0 +162,11,0,0,1,387,0,17,0,0,0,0,0,0,0,0,296,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,1.623915698,0.0,0.103,180.253,4.9,11.956,15.883,125527.318,259,2.373527194,13.98365355,11.344922,0 +163,12,0,0,1,0,0,6,0,0,70,0,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,0,,,,0,1,134,183,1.668109438,0.0,0.232,108.933,2.646,23.545,30.961,89532.139,255,1.892895305,11.10334691,9.012033528,0 +164,12,0,0,0,0,31,0,0,0,0,0,0,0,0,0,32,10,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,132,179,1.629064898,0.0,0.18,110.289,2.792,24.636,32.488,91377.586,261,1.952710024,11.51279919,9.362261339,0 +165,12,0,8,0,0,1,8,0,2,2,0,0,2,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,241,0,,,,0,1,168,245,1.625728255,0.0,0.18,120.792,2.901,28.44,36.447,100632.981,241,1.886320534,11.16043302,9.046397968,0 +166,12,0,0,0,0,8,6,0,0,0,0,0,0,0,4,20,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,232,0,,,,0,1,129,185,1.657591436,0.0,0.232,89.999,1.477,31.031,40.24,83353.014,232,1.81372781,10.70255917,8.685018685,0 +167,12,0,5,0,0,2,0,0,4,0,0,0,0,1,0,11,0,0,PORTLAND,PORTLAND,0,2.4,11.75,10.682,,250,0,,,,0,1,121,162,1.645444303,0.0,0.23,109.224,2.653,23.607,31.043,89770.828,250,1.924409249,11.35618938,9.217923406,0 +168,12,0,0,0,0,1,2,0,0,0,17,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.227,,239,0,,,,0,1,83,110,1.67419367,0.0,0.307,45.087,1.02,26.71,35.018,51266.863,239,1.862908794,10.98516394,8.941438852,0 +169,13,0,0,0,0,0,1,0,0,5,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,75,86,1.669106877,0.0,0.285,98.232,2.534,28.64,38.85,87732.553,253,1.759533099,10.35933994,8.433593158,0 +170,13,0,0,0,0,0,11,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,233,0,,,,0,1,288,334,1.664580647,0.052,0.284,45.626,0.973,26.674,35.505,51923.819,233,1.659809201,9.881264531,8.011679737,0 +171,13,0,0,0,0,0,36,0,0,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.227,,235,0,,,,0,1,283,332,1.664641972,0.024,0.309,77.302,2.634,31.311,41.58,76084.665,235,1.701591679,10.02416853,8.148730782,0 +172,14,0,0,0,15,0,0,0,0,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,247,0,,,,0,1,0,0,1.674643706,0.0,0.052,170.195,2.085,24.945,35.487,131636.939,247,1.973396862,11.69948998,9.437924832,0 +173,14,0,0,0,183,0,39,0,3,0,1,0,1,415,0,681,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,0,0,1.673076673,0.0,0.014,162.494,1.229,18.497,28.001,121917.258,253,1.999836078,11.8675534,9.56224595,0 +174,14,0,1,0,0,0,39,0,7,4,0,0,1,8,0,147,0,0,PORTLAND,PORTLAND,0,2.4,13.25,10.682,,271,0,,,,0,1,305,495,1.602403938,0.0,0.102,156.841,3.784,23.292,30.74,120051.917,271,1.993432069,11.79748434,9.579975719,0 +175,14,0,0,0,0,0,137,0,0,0,0,0,0,0,0,162,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,267,0,,,,0,1,0,0,1.673979465,0.0,0.052,177.183,4.026,25.261,33.133,134602.003,267,2.056612534,12.1723577,9.882896755,0 +176,14,0,0,0,0,0,5,0,2,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,196,2.4,20.0,16.281,,251,0,,,,0,1,117,182,1.696013806,0.0,0.0,160.024,1.207,17.831,26.992,119690.095,251,1.864681613,11.04602212,8.92272043,0 +177,14,0,7,0,0,2,109,0,0,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,12.95,10.542,,259,0,,,,0,1,0,0,1.673560068,0.0,0.0,188.235,4.411,23.39,32.472,141252.203,259,2.089879367,12.37995361,10.04421242,0 +178,14,0,4,1,0,0,1123,58,0,1,0,0,55,0,0,2732,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.281,,256,0,,,,0,1,1,1,1.661970657,0.0,0.0,189.28,3.326,22.265,31.477,141284.673,256,2.122784278,12.57321271,10.19667622,0 179,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,247,3,,,,0,1,0,0,0.811587804,0.0,0.13,136.134,3.007,29.552,40.025,112741.627,247,1.895279656,11.20831201,9.093557132,0 -180,14,0,0,0,0,1,3,0,0,0,0,0,1,0,2,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,112,170,1.567687063,0.0,0.102,127.227,2.921,28.084,37.846,105646.812,253,1.896543962,11.23516542,9.068574926,0 +180,14,0,0,0,0,1,4,0,0,0,0,0,0,0,1,4,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,112,170,1.567687063,0.0,0.102,127.227,2.921,28.084,37.846,105646.812,253,1.896543962,11.23516542,9.068574926,0 181,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,3,,,,0,1,9,9,0.843357832,0.048,0.178,120.792,2.901,28.44,36.447,100632.981,262,1.931747158,11.39216797,9.245897009,0 182,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,3,,,,0,1,0,0,0.833288349,0.0,0.131,149.813,3.075,24.888,32.155,116459.261,274,1.973404175,11.6364975,9.462517658,0 -183,14,0,0,0,204,31,328,0,0,0,17,0,0,0,0,493,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,0,,,,0,1,0,0,1.674794922,0.0,0.0,181.723,4.202,24.453,33.936,138021.928,255,2.045362336,12.12138109,9.802480766,0 -184,14,0,39,0,0,0,14,0,0,0,2,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,1.669440446,0.0,0.0,198.365,4.761,25.954,36.288,150177.558,259,2.043306016,12.07776226,9.770592546,0 -185,14,0,0,0,0,33,1,0,0,0,15,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,259,0,,,,0,1,87,125,1.662830966,0.0,0.0,198.365,4.761,25.954,36.288,150177.558,259,2.022153293,11.92689949,9.664066165,0 -186,14,0,39,0,0,23,222,0,11,0,0,0,0,0,0,543,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,28,44,1.594314836,0.049,0.151,145.671,3.045,25.455,32.89,114278.984,262,1.953038092,11.51066433,9.334517551,0 -187,15,0,212,150,0,20,311,0,14,0,0,0,0,0,0,1006,0,0,PORTLAND,PORTLAND,0,2.4,11.448,9.319,,163,3,,,,0,1,331,452,75.66006466,0.155,0.508,30.295,0.332,3.106,4.186,22067.947,163,1.829315436,10.76434727,8.647571192,0 -188,15,0,11,0,0,0,10,0,1,0,0,0,0,0,3,34,0,0,PORTLAND,PORTLAND,0,2.4,13.0,8.182,,180,0,,,,0,1,118,154,3.70956408,0.144,0.513,14.984,0.0,3.382,4.558,12506.89,180,1.743545185,10.24594673,8.160741521,0 -189,15,0,0,0,0,13,116,0,2,0,0,0,0,0,0,94,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,3,,,,0,1,139,191,13.43172817,0.091,0.393,32.951,0.306,4.676,6.648,25343.425,197,1.81971244,10.71671054,8.575072788,0 -190,15,0,24,0,0,2,43,0,5,0,0,0,0,76,0,184,286,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,170,0,,,,0,1,114,149,20.12746736,999999.0,999999.0,9.145,0.0,9.733,12.711,13988.319,170,1.696375028,10.03769384,8.021143288,0 -191,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,171,0,,,,0,1,31,45,2.666666852,0.16,0.311,24.534,0.33,15.482,26.322,32547.754,171,1.559036055,9.207019392,7.395793502,0 -192,16,0,56,0,0,2,0,0,0,4,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,184,0,,,,0,1,220,226,1.676574856,0.0,0.012,96.806,0.616,20.564,31.8,82308.173,184,1.614167019,9.59994144,7.665834566,0 +183,14,0,0,0,280,19,219,0,0,0,20,0,0,0,0,557,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,0,,,,0,1,0,0,1.674794922,0.0,0.0,181.723,4.202,24.453,33.936,138021.928,255,2.045362336,12.12138109,9.802480766,0 +184,14,0,57,0,0,0,6,0,0,0,2,0,0,0,0,62,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,1.669440446,0.0,0.0,198.365,4.761,25.954,36.288,150177.558,259,2.043306016,12.07776226,9.770592546,0 +185,14,0,0,0,0,21,0,0,0,0,19,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,259,0,,,,0,1,87,125,1.662830966,0.0,0.0,198.365,4.761,25.954,36.288,150177.558,259,2.022153293,11.92689949,9.664066165,0 +186,14,0,27,0,0,29,314,0,9,0,0,0,0,0,0,457,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,28,44,1.594314836,0.049,0.151,145.671,3.045,25.455,32.89,114278.984,262,1.953038092,11.51066433,9.334517551,0 +187,15,0,158,145,0,13,238,0,13,0,0,0,0,0,0,1062,0,0,PORTLAND,PORTLAND,0,2.4,11.448,9.319,,163,3,,,,0,1,331,452,75.66006466,0.155,0.508,30.295,0.332,3.106,4.186,22067.947,163,1.829315436,10.76434727,8.647571192,0 +188,15,0,10,0,0,0,11,0,1,0,0,0,0,0,2,31,0,0,PORTLAND,PORTLAND,0,2.4,13.0,8.182,,180,0,,,,0,1,118,154,3.70956408,0.144,0.513,14.984,0.0,3.382,4.558,12506.89,180,1.743545185,10.24594673,8.160741521,0 +189,15,0,0,0,0,6,58,0,1,0,0,0,0,0,0,117,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,3,,,,0,1,139,191,13.43172817,0.091,0.393,32.951,0.306,4.676,6.648,25343.425,197,1.81971244,10.71671054,8.575072788,0 +190,15,0,23,0,0,1,27,0,4,0,0,0,0,99,0,216,286,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,170,0,,,,0,1,114,149,20.12746736,999999.0,999999.0,9.145,0.0,9.733,12.711,13988.319,170,1.696375028,10.03769384,8.021143288,0 +191,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,171,0,,,,0,1,31,45,2.666666852,0.16,0.311,24.534,0.33,15.482,26.322,32547.754,171,1.559036055,9.207019392,7.395793502,0 +192,16,0,70,0,0,1,0,0,0,4,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,184,0,,,,0,1,220,226,1.676574856,0.0,0.012,96.806,0.616,20.564,31.8,82308.173,184,1.614167019,9.59994144,7.665834566,0 193,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,168,3,,,,0,1,0,0,0.933004895,0.102,0.141,82.004,0.647,21.989,34.268,74414.085,168,1.587417474,9.333402455,7.565368089,0 -194,16,0,76,0,0,0,4,0,0,0,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,0,,,,0,1,0,0,1.673148198,0.051,0.1,98.294,0.64,20.537,31.932,83345.052,197,1.677979073,9.965253935,7.989567303,0 -195,16,0,0,0,0,10,0,0,0,0,0,0,0,3,0,10,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,180,3,,,,0,1,0,0,4.780312642,0.149,0.188,72.869,0.538,27.042,39.271,71769.129,180,1.682643827,9.945617888,8.02443327,0 -196,16,0,0,0,0,0,7,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,208,0,,,,0,1,0,0,1.656486802,0.051,0.051,96.059,0.59,21.055,32.33,82168.721,208,1.738588455,10.29165566,8.282089862,0 -197,16,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,191,1,,,,0,1,353,407,15.57702006,0.221,0.26,21.625,0.398,28.673,41.113,40151.982,191,1.55358038,9.152421095,7.413693941,0 +194,16,0,89,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,0,,,,0,1,0,0,1.673148198,0.051,0.1,98.294,0.64,20.537,31.932,83345.052,197,1.677979073,9.965253935,7.989567303,0 +195,16,0,0,0,0,8,0,0,0,0,0,0,0,3,0,14,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,180,3,,,,0,1,0,0,4.780312642,0.149,0.188,72.869,0.538,27.042,39.271,71769.129,180,1.682643827,9.945617888,8.02443327,0 +196,16,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,208,0,,,,0,1,0,0,1.656486802,0.051,0.051,96.059,0.59,21.055,32.33,82168.721,208,1.738588455,10.29165566,8.282089862,0 +197,16,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,191,1,,,,0,1,353,407,15.57702006,0.221,0.26,21.625,0.398,28.673,41.113,40151.982,191,1.55358038,9.152421095,7.413693941,0 198,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,161,0,,,,0,1,0,0,1.335633982,0.102,0.141,82.004,0.647,21.989,34.268,74414.085,161,1.548417844,9.080164117,7.332739102,0 -199,16,0,0,0,0,109,2,0,114,0,0,0,0,0,0,96,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,158,0,,,,0,1,0,0,0.261998205,0.166,0.205,41.538,0.785,19.303,30.295,45973.054,158,0.0,0.0,0.0,0 -200,17,0,21,0,5,0,0,0,0,0,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,0,0,1.670824474,0.03,0.0,163.441,1.311,24.525,35.806,127517.872,228,1.775781001,10.48374983,8.461031078,0 +199,16,0,0,0,0,91,2,0,69,0,0,0,0,0,0,168,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,158,0,,,,0,1,0,0,0.261998205,0.166,0.205,41.538,0.785,19.303,30.295,45973.054,158,0.0,0.0,0.0,0 +200,17,0,21,0,4,0,0,0,0,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,0,0,1.670824474,0.03,0.0,163.441,1.311,24.525,35.806,127517.872,228,1.775781001,10.48374983,8.461031078,0 201,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,214,0,,,,0,1,160,170,1.657331377,0.149,0.381,29.229,1.05,31.065,41.097,45008.85,214,1.540168335,9.065764861,7.414434657,0 202,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,0,0,3.341250588,999999.0,999999.0,0.267,0.0,9.629,10.699,7018.754,202,1.708954692,10.09421522,8.179126776,0 -203,17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,11.812,9.616,,206,3,,,,0,1,72,80,4.135859966,0.048,0.323,46.074,1.039,33.258,44.556,58003.18,206,1.827554484,10.80745123,8.746496663,0 +203,17,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,11.812,9.616,,206,3,,,,0,1,72,80,4.135859966,0.048,0.323,46.074,1.039,33.258,44.556,58003.18,206,1.827554484,10.80745123,8.746496663,0 204,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,0,,,,0,1,31,35,1.652670838,0.0,0.228,87.986,1.441,30.809,39.833,81804.168,227,1.829934337,10.81191409,8.759226373,0 205,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,224,1,,,,0,1,0,0,1.664774526,0.186,0.418,34.49,1.519,40.064,51.616,55107.862,224,1.598037799,9.477955417,7.703584743,0 206,17,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,1,,,,0,1,0,0,1.656859721,0.186,0.418,34.49,1.519,40.064,51.616,55107.862,217,1.785038415,10.53465131,8.540493709,0 -207,17,0,19,0,0,0,0,0,0,0,0,0,0,2,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,215,0,,,,0,1,0,0,1.671832964,0.076,0.076,103.265,0.552,20.474,31.398,86184.874,215,1.773321036,10.45749413,8.448338196,0 -208,17,0,1,0,0,0,0,0,2,0,0,0,0,0,0,6,40,10,PORTLAND,PORTLAND,21609,2.4,0.0,0.0,,219,3,,,,0,1,0,0,4.816302464,0.051,0.051,140.409,0.792,20.604,31.413,109965.635,219,1.844403724,10.92469733,8.821630499,0 -209,17,0,1,0,52,0,33,0,1,0,0,0,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,27,45,1.761907507,0.0,0.0,135.169,1.024,18.438,28.106,104495.996,228,1.765181984,10.43844364,8.40435636,0 -210,17,0,51,0,0,0,6,0,14,2,0,1,0,0,0,121,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,236,0,,,,0,1,1,2,1.656104345,0.0,0.004,127.552,0.938,18.074,27.823,99439.945,236,1.805170375,10.67750991,8.629838291,0 -211,17,0,14,0,0,0,0,0,0,6,0,1,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.671397825,0.0,0.02,159.993,1.321,23.855,34.803,124669.587,240,1.807306446,10.66570668,8.622723854,0 -212,17,0,0,0,0,0,29,0,5,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,228,0,,,,0,1,0,0,1.675674702,0.0,0.0,158.323,1.401,23.43,34.18,123202.138,228,1.797711901,10.60587238,8.57706999,0 +207,17,0,7,0,0,0,0,0,0,0,0,0,0,2,0,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,215,0,,,,0,1,0,0,1.671832964,0.076,0.076,103.265,0.552,20.474,31.398,86184.874,215,1.773321036,10.45749413,8.448338196,0 +208,17,0,2,0,0,0,0,0,3,0,0,0,0,0,0,2,40,10,PORTLAND,PORTLAND,21609,2.4,0.0,0.0,,219,3,,,,0,1,0,0,4.816302464,0.051,0.051,140.409,0.792,20.604,31.413,109965.635,219,1.844403724,10.92469733,8.821630499,0 +209,17,0,0,0,71,0,50,0,1,0,0,0,0,0,0,142,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,27,45,1.761907507,0.0,0.0,135.169,1.024,18.438,28.106,104495.996,228,1.765181984,10.43844364,8.40435636,0 +210,17,0,73,0,0,0,6,0,11,5,0,1,0,0,0,97,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,236,0,,,,0,1,1,2,1.656104345,0.0,0.004,127.552,0.938,18.074,27.823,99439.945,236,1.805170375,10.67750991,8.629838291,0 +211,17,0,29,0,0,0,0,0,0,11,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.671397825,0.0,0.02,159.993,1.321,23.855,34.803,124669.587,240,1.807306446,10.66570668,8.622723854,0 +212,17,0,0,0,0,0,17,0,4,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,228,0,,,,0,1,0,0,1.675674702,0.0,0.0,158.323,1.401,23.43,34.18,123202.138,228,1.797711901,10.60587238,8.57706999,0 213,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.25,,241,0,,,,0,1,0,0,1.689205226,0.0,0.0,137.234,1.158,22.812,33.365,109183.283,241,1.831799951,10.86247187,8.75570424,0 -214,17,0,0,3,1,3,6,0,0,0,0,0,0,106,0,121,0,610,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,0,0,1.676930401,0.0,0.014,162.494,1.229,18.497,28.001,121917.258,243,1.838421496,10.88164894,8.792183069,0 -215,17,0,0,0,0,0,107,0,0,0,0,0,0,0,0,221,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,239,0,,,,0,1,0,0,1.657046868,0.1,0.1,159.381,0.928,22.555,34.749,124243.626,239,1.933315599,11.44859202,9.242490338,0 -216,17,0,11,0,0,0,22,0,1,3,0,1,0,1,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,291,465,1.635339732,0.0,0.275,58.089,1.31,34.017,43.713,65153.468,210,1.789073822,10.55333369,8.555236423,0 -217,18,0,0,0,0,22,0,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,246,0,,,,0,1,48,50,1.643688268,0.0,0.336,64.091,1.164,29.414,39.384,66223.711,246,1.692250381,9.872188407,8.090610613,0 +214,17,0,0,2,2,1,5,0,0,0,0,0,0,72,0,91,0,610,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,0,0,1.676930401,0.0,0.014,162.494,1.229,18.497,28.001,121917.258,243,1.838421496,10.88164894,8.792183069,0 +215,17,0,0,0,0,0,118,0,0,0,0,0,1,0,0,293,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,239,0,,,,0,1,0,0,1.657046868,0.1,0.1,159.381,0.928,22.555,34.749,124243.626,239,1.933315599,11.44859202,9.242490338,0 +216,17,0,10,0,0,0,20,0,2,7,0,1,0,0,0,43,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,291,465,1.635339732,0.0,0.275,58.089,1.31,34.017,43.713,65153.468,210,1.789073822,10.55333369,8.555236423,0 +217,18,0,0,0,0,21,0,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,246,0,,,,0,1,48,50,1.643688268,0.0,0.336,64.091,1.164,29.414,39.384,66223.711,246,1.692250381,9.872188407,8.090610613,0 218,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,209,2,,,,0,1,8,8,3.303685314,0.166,0.398,29.57,1.148,31.701,41.459,45457.994,209,1.386462497,8.141324293,6.6681882,0 219,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,222,0,,,,0,1,0,0,3.188872643,0.252,0.484,22.209,1.645,44.041,57.286,50876.961,222,1.521723237,8.956109226,7.331679757,0 -220,18,0,0,0,0,22,48,0,3,0,0,0,0,0,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,0,,,,0,1,433,482,1.690412126,0.104,0.336,40.57,0.896,27.049,35.604,48751.239,227,1.591750462,9.282487847,7.611135245,0 +220,18,0,0,0,0,33,47,0,3,0,0,0,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,0,,,,0,1,433,482,1.690412126,0.104,0.336,40.57,0.896,27.049,35.604,48751.239,227,1.591750462,9.282487847,7.611135245,0 221,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,220,0,,,,0,1,3,3,2.617624559,0.252,0.484,22.209,1.645,44.041,57.286,50876.961,220,1.511377261,8.784537835,7.205544461,0 -222,18,0,0,0,0,1,69,0,2,0,0,0,0,0,0,44,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,238,0,,,,0,1,269,282,1.659083091,0.024,0.309,77.302,2.634,31.311,41.58,76084.665,238,1.645496564,9.616940868,7.87232139,0 +222,18,0,0,0,0,0,63,0,3,0,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,238,0,,,,0,1,269,282,1.659083091,0.024,0.309,77.302,2.634,31.311,41.58,76084.665,238,1.645496564,9.616940868,7.87232139,0 223,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,242,0,,,,0,1,0,0,1.883126689,0.0,0.336,64.091,1.164,29.414,39.384,66223.711,242,1.64100339,9.576234001,7.855637601,0 -224,19,0,15,0,0,1,0,0,0,0,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,0,,,,0,1,252,580,1.645486654,0.027,0.022,82.029,0.678,22.665,35.137,74986.448,197,1.615812762,9.610860879,7.670035647,0 -225,19,0,0,0,26,0,0,0,0,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,107,115,1.682903436,0.027,0.027,105.829,0.989,19.139,29.611,86681.937,202,1.674112491,9.972789801,7.983762142,0 -226,19,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,217,0,,,,0,1,0,0,1.681060995,0.0,0.0,137.575,1.212,21.197,32.449,108815.085,217,1.741038529,10.31155569,8.294794584,0 -227,19,0,5,0,0,0,0,0,0,0,0,0,0,19,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,221,0,,,,0,1,44,100,1.696586347,0.0,0.0,115.606,0.941,18.607,28.545,92256.852,221,1.692824815,10.02725156,8.051078743,0 +224,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,0,,,,0,1,252,580,1.645486654,0.027,0.022,82.029,0.678,22.665,35.137,74986.448,197,1.615812762,9.610860879,7.670035647,0 +225,19,0,0,0,10,0,0,0,0,0,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,107,115,1.682903436,0.027,0.027,105.829,0.989,19.139,29.611,86681.937,202,1.674112491,9.972789801,7.983762142,0 +226,19,0,0,0,0,0,3,0,5,0,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,217,0,,,,0,1,0,0,1.681060995,0.0,0.0,137.575,1.212,21.197,32.449,108815.085,217,1.741038529,10.31155569,8.294794584,0 +227,19,0,3,0,0,0,0,0,0,0,0,0,0,21,0,17,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,221,0,,,,0,1,44,100,1.696586347,0.0,0.0,115.606,0.941,18.607,28.545,92256.852,221,1.692824815,10.02725156,8.051078743,0 228,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,175,0,,,,0,1,0,0,5.033548595,0.0,0.0,76.586,0.663,18.665,29.103,67640.634,175,1.55086313,9.159623718,7.358761871,0 -229,19,0,0,0,0,0,16,0,0,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,187,0,,,,0,1,0,0,1.677965746,0.0,0.0,76.586,0.663,18.665,29.103,67640.634,187,1.510093457,8.923355485,7.156685895,0 -230,19,0,82,0,0,0,0,0,0,12,0,0,0,0,0,98,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,202,0,,,,0,1,60,137,3.285466712,0.0,0.0,76.724,0.717,19.697,30.54,68648.975,202,1.647128546,9.794180558,7.820383026,0 -231,19,0,0,0,0,0,78,0,0,0,0,0,0,0,0,45,0,0,PORTLAND,PORTLAND,0,2.4,11.25,10.227,,213,0,,,,0,1,1,1,1.686748666,0.0,0.0,110.339,1.032,19.254,29.789,89681.612,213,1.661124275,9.896351299,7.921271884,0 -232,20,0,141,0,0,0,5,0,68,0,0,2,0,0,0,292,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,244,0,,,,0,1,148,211,1.589468628,0.0,0.15,126.901,1.082,10.239,15.046,90845.912,244,2.377009634,14.07428547,11.3847998,0 -233,20,0,0,0,0,0,26,0,0,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.647026911,0.0,0.1,156.408,4.131,12.221,17.468,111280.64,249,2.224451209,13.18649698,10.67255172,0 -234,20,0,0,0,5,0,47,0,43,0,0,0,0,2332,0,4118,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,235,0,,,,0,1,0,0,1.526608526,0.0,0.053,160.024,1.207,17.831,26.992,119690.095,235,1.851764175,10.97318989,8.848924144,0 +229,19,0,0,0,0,0,16,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,187,0,,,,0,1,0,0,1.677965746,0.0,0.0,76.586,0.663,18.665,29.103,67640.634,187,1.510093457,8.923355485,7.156685895,0 +230,19,0,84,0,0,0,0,0,0,9,0,0,0,0,0,107,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,202,0,,,,0,1,60,137,3.285466712,0.0,0.0,76.724,0.717,19.697,30.54,68648.975,202,1.647128546,9.794180558,7.820383026,0 +231,19,0,0,0,0,0,76,0,0,0,0,0,1,0,0,47,0,0,PORTLAND,PORTLAND,0,2.4,11.25,10.227,,213,0,,,,0,1,1,1,1.686748666,0.0,0.0,110.339,1.032,19.254,29.789,89681.612,213,1.661124275,9.896351299,7.921271884,0 +232,20,0,222,0,0,0,5,0,63,0,0,1,0,0,0,155,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,244,0,,,,0,1,148,211,1.589468628,0.0,0.15,126.901,1.082,10.239,15.046,90845.912,244,2.377009634,14.07428547,11.3847998,0 +233,20,0,0,0,0,0,24,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.647026911,0.0,0.1,156.408,4.131,12.221,17.468,111280.64,249,2.224451209,13.18649698,10.67255172,0 +234,20,0,0,0,6,0,39,0,85,0,0,0,0,4434,0,4969,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,235,0,,,,0,1,0,0,1.526608526,0.0,0.053,160.024,1.207,17.831,26.992,119690.095,235,1.851764175,10.97318989,8.848924144,0 235,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,3,,,,0,1,0,0,1.700460925,0.098,0.101,173.411,1.675,20.131,29.147,129636.944,240,1.893840533,11.21939478,9.069787834,0 -236,20,0,4,0,296,0,10,0,0,0,0,0,0,0,0,265,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.853,,214,3,,,,0,1,0,0,4.011558032,0.0,0.0,112.751,0.832,15.11,23.117,86955.762,214,1.740061408,10.34687883,8.290653138,0 -237,20,0,13,0,0,8,937,0,22,35,0,2,30,0,15,749,0,0,PORTLAND,PORTLAND,0,2.4,17.0,11.591,,224,3,,,,0,1,376,534,6.468540919,0.0,0.102,211.196,1.561,18.861,28.923,153676.143,224,1.804137755,10.70828926,8.605973795,0 +236,20,0,2,0,359,0,8,0,1,0,0,0,0,0,0,488,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.853,,214,3,,,,0,1,0,0,4.011558032,0.0,0.0,112.751,0.832,15.11,23.117,86955.762,214,1.740061408,10.34687883,8.290653138,0 +237,20,0,31,0,0,3,684,0,32,27,0,5,13,1,18,699,0,0,PORTLAND,PORTLAND,0,2.4,17.0,11.591,,224,3,,,,0,1,376,534,6.468540919,0.0,0.102,211.196,1.561,18.861,28.923,153676.143,224,1.804137755,10.70828926,8.605973795,0 238,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,230,0,,,,0,1,0,0,1.754994688,0.153,0.262,128.214,0.759,12.527,18.541,93923.126,230,1.909153491,11.31589947,9.121801443,0 -239,20,0,60,639,0,0,1210,0,0,0,3,0,0,0,0,908,0,0,PORTLAND,PORTLAND,0,2.4,17.0,13.839,,239,0,,,,0,1,16,20,1.610949408,0.122,0.125,186.296,1.666,20.218,29.534,138131.626,239,2.03691411,12.08030578,9.766472722,0 -240,20,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,245,0,,,,0,1,0,0,1.674801522,0.122,0.125,186.296,1.666,20.218,29.534,138131.626,245,2.068620207,12.28058178,9.925259986,0 -241,21,0,0,0,0,0,10,0,8,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,187,3,,,,0,1,273,406,14.38786762,0.013,0.0,77.189,1.176,18.177,28.341,67539.12,187,1.530969241,9.094458074,7.255776314,0 -242,21,0,0,0,0,9,77,0,0,6,11,0,0,40,0,219,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,17,17,8.600230964,0.0,0.0,68.314,0.95,15.936,24.64,59490.611,188,1.576796238,9.420736638,7.522359702,0 -243,21,0,5,2,0,9,606,0,89,14,0,0,9,0,4,418,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,200,3,,,,0,1,398,599,8.354620703,0.013,0.0,77.189,1.176,18.177,28.341,67539.12,200,1.663091249,9.911966305,7.914807086,0 -244,22,0,1,17,171,6,993,0,27,4,0,0,2,0,0,507,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,235,0,,,,0,1,0,0,1.519498132,0.0,0.203,125.031,1.35,7.869,11.431,87335.313,235,2.371456863,14.06889032,11.35171083,0 -245,22,0,2,0,0,6,343,0,3,0,0,0,7,0,2,948,0,0,PORTLAND,PORTLAND,0,2.4,22.0,12.727,,228,0,,,,0,1,0,0,1.674619881,0.0,0.272,108.817,0.892,5.806,8.186,74882.274,228,2.334252083,13.7217011,11.04776549,0 -246,22,0,0,0,0,0,390,0,0,0,0,0,0,0,0,226,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,201,0,,,,0,1,0,0,1.74414428,0.0,0.066,63.857,0.665,12.463,18.74,52862.548,201,1.686674728,10.06988728,8.041698383,0 -247,22,0,0,0,0,0,41,0,8,0,0,0,4,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,212,3,,,,0,1,171,259,3.099763888,0.0,0.154,99.937,0.834,15.181,23.095,78740.689,212,1.734423619,10.31486596,8.256025015,0 -248,22,0,0,0,0,2,1713,0,11,0,0,0,2,0,0,1103,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,215,3,,,,0,1,331,514,5.72429642,0.0,0.154,99.937,0.834,15.181,23.095,78740.689,215,1.803912692,10.72486582,8.602224486,0 -249,22,0,0,0,91,4,253,0,75,73,0,0,0,0,0,390,0,0,PORTLAND,PORTLAND,0,2.4,14.694,11.962,,215,0,,,,0,1,0,0,5.059776125,0.02,0.234,84.545,0.461,9.941,14.483,63377.939,215,1.846546626,10.89005627,8.703356494,0 -250,22,0,0,0,111,18,537,0,25,0,0,2,0,1,0,815,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,213,0,,,,0,1,0,0,1.792039767,0.052,0.276,78.666,0.506,9.679,14.132,59391.03,213,1.913315957,11.24880343,9.037618596,0 -251,22,0,6,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.591,,226,0,,,,0,1,0,0,1.554736791,0.097,0.206,131.89,1.103,12.822,18.864,96483.07,226,1.9455804,11.54505166,9.292704978,0 -252,22,0,244,0,0,0,23,0,18,0,0,0,0,0,0,324,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,218,0,,,,0,1,0,0,1.699061549,0.0,0.278,100.362,0.776,8.853,12.755,72394.845,218,2.066905779,12.17964443,9.787905672,0 -253,22,0,0,0,0,0,19,0,0,0,0,0,1,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,0,0,1.552696613,0.048,0.157,128.902,1.098,10.453,15.362,92328.567,228,2.147179716,12.79702248,10.30705922,0 -254,23,0,0,0,0,0,0,0,15,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,133,0,,,,0,1,0,0,0.801286444,0.113,0.952,15.387,1.323,15.917,24.003,25209.671,133,1.882039317,10.96464095,8.800945506,0 -255,23,0,35,0,0,2,42,0,1,0,0,6,0,0,2,66,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,213,0,,,,0,1,187,240,1.546438719,0.0,0.551,45.244,4.796,23.418,33.62,50473.156,213,2.130423906,12.34404648,9.994812416,0 -256,23,0,0,0,0,0,9,0,0,2,0,1,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,219,0,,,,0,1,213,275,1.610337592,0.0,0.649,37.946,2.829,23.789,33.854,45952.275,219,2.139335666,12.27447321,9.926454863,0 -257,23,0,0,0,0,0,146,0,0,93,0,0,19,0,0,242,0,0,PORTLAND,PORTLAND,0,2.4,16.0,13.025,,221,0,,,,0,1,0,0,1.491313335,0.0,0.598,40.397,4.098,24.879,35.448,48540.392,221,2.15490868,12.31471216,9.965405362,0 +239,20,0,100,418,0,0,537,0,0,0,3,0,0,0,0,954,0,0,PORTLAND,PORTLAND,0,2.4,17.0,13.839,,239,0,,,,0,1,16,20,1.610949408,0.122,0.125,186.296,1.666,20.218,29.534,138131.626,239,2.03691411,12.08030578,9.766472722,0 +240,20,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,245,0,,,,0,1,0,0,1.674801522,0.122,0.125,186.296,1.666,20.218,29.534,138131.626,245,2.068620207,12.28058178,9.925259986,0 +241,21,0,0,0,0,0,3,0,9,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,187,3,,,,0,1,273,406,14.38786762,0.013,0.0,77.189,1.176,18.177,28.341,67539.12,187,1.530969241,9.094458074,7.255776314,0 +242,21,0,0,0,0,19,35,0,0,3,8,0,0,28,0,106,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,17,17,8.600230964,0.0,0.0,68.314,0.95,15.936,24.64,59490.611,188,1.576796238,9.420736638,7.522359702,0 +243,21,0,5,2,0,7,486,0,69,7,0,0,13,0,2,855,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,200,3,,,,0,1,398,599,8.354620703,0.013,0.0,77.189,1.176,18.177,28.341,67539.12,200,1.663091249,9.911966305,7.914807086,0 +244,22,0,2,19,87,4,411,0,24,6,0,0,5,0,0,701,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,235,0,,,,0,1,0,0,1.519498132,0.0,0.203,125.031,1.35,7.869,11.431,87335.313,235,2.371456863,14.06889032,11.35171083,0 +245,22,0,1,0,0,15,362,0,4,0,0,0,8,0,2,627,0,0,PORTLAND,PORTLAND,0,2.4,22.0,12.727,,228,0,,,,0,1,0,0,1.674619881,0.0,0.272,108.817,0.892,5.806,8.186,74882.274,228,2.334252083,13.7217011,11.04776549,0 +246,22,0,0,0,0,0,224,0,0,0,0,0,0,0,0,410,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,201,0,,,,0,1,0,0,1.74414428,0.0,0.066,63.857,0.665,12.463,18.74,52862.548,201,1.686674728,10.06988728,8.041698383,0 +247,22,0,0,0,0,0,20,0,5,0,0,0,3,0,1,74,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,212,3,,,,0,1,171,259,3.099763888,0.0,0.154,99.937,0.834,15.181,23.095,78740.689,212,1.734423619,10.31486596,8.256025015,0 +248,22,0,0,0,0,1,821,0,8,0,0,0,2,0,0,1768,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,215,3,,,,0,1,331,514,5.72429642,0.0,0.154,99.937,0.834,15.181,23.095,78740.689,215,1.803912692,10.72486582,8.602224486,0 +249,22,0,0,0,72,3,283,0,105,71,0,0,0,0,0,532,0,0,PORTLAND,PORTLAND,0,2.4,14.694,11.962,,215,0,,,,0,1,0,0,5.059776125,0.02,0.234,84.545,0.461,9.941,14.483,63377.939,215,1.846546626,10.89005627,8.703356494,0 +250,22,0,0,0,66,14,574,0,30,0,0,1,0,2,0,374,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,213,0,,,,0,1,0,0,1.792039767,0.052,0.276,78.666,0.506,9.679,14.132,59391.03,213,1.913315957,11.24880343,9.037618596,0 +251,22,0,8,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.591,,226,0,,,,0,1,0,0,1.554736791,0.097,0.206,131.89,1.103,12.822,18.864,96483.07,226,1.9455804,11.54505166,9.292704978,0 +252,22,0,145,0,0,0,55,0,22,0,0,0,0,0,0,111,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,218,0,,,,0,1,0,0,1.699061549,0.0,0.278,100.362,0.776,8.853,12.755,72394.845,218,2.066905779,12.17964443,9.787905672,0 +253,22,0,0,0,0,0,10,0,0,0,0,0,1,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,0,0,1.552696613,0.048,0.157,128.902,1.098,10.453,15.362,92328.567,228,2.147179716,12.79702248,10.30705922,0 +254,23,0,0,0,0,0,0,0,23,0,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,133,0,,,,0,1,0,0,0.801286444,0.113,0.952,15.387,1.323,15.917,24.003,25209.671,133,1.882039317,10.96464095,8.800945506,0 +255,23,0,31,0,0,2,53,0,2,0,0,7,0,0,1,126,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,213,0,,,,0,1,187,240,1.546438719,0.0,0.551,45.244,4.796,23.418,33.62,50473.156,213,2.130423906,12.34404648,9.994812416,0 +256,23,0,0,0,0,0,16,0,0,5,0,1,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,219,0,,,,0,1,213,275,1.610337592,0.0,0.649,37.946,2.829,23.789,33.854,45952.275,219,2.139335666,12.27447321,9.926454863,0 +257,23,0,0,0,0,0,97,0,0,96,0,0,25,0,0,277,0,0,PORTLAND,PORTLAND,0,2.4,16.0,13.025,,221,0,,,,0,1,0,0,1.491313335,0.0,0.598,40.397,4.098,24.879,35.448,48540.392,221,2.15490868,12.31471216,9.965405362,0 258,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,0,0,1.049198957,0.0,0.649,37.946,2.829,23.789,33.854,45952.275,223,2.128181514,12.23144597,9.870378044,0 -259,23,0,19,0,0,17,28,0,7,0,0,0,0,0,0,92,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,196,0,,,,0,1,210,271,1.549596988,0.048,0.552,42.976,4.416,23.822,34.317,49466.923,196,2.113641456,12.27828766,9.919281834,0 -260,23,0,0,0,34,35,57,0,0,0,24,0,1,0,0,107,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,206,0,,,,0,1,0,0,1.56385722,0.047,0.649,35.946,2.837,24.038,34.168,44873.157,206,2.103193883,12.07859894,9.744287819,0 -261,23,0,0,8,0,0,2,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,0,0,1.534858059,0.048,0.601,38.103,3.049,23.722,34.08,46197.08,202,2.136866262,12.21796486,9.861943387,0 -262,23,0,0,0,117,0,0,0,0,0,0,0,0,0,0,96,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,209,0,,,,0,1,0,0,1.000186157,0.047,0.649,35.946,2.837,24.038,34.168,44873.157,209,2.095760694,12.0470055,9.715881847,0 -263,23,0,0,0,0,0,54,0,1,0,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,182,0,,,,0,1,0,0,1.550566478,0.0,0.569,39.824,3.098,23.408,33.784,47108.987,182,2.099557612,12.21263587,9.861322335,0 -264,23,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,190,0,,,,0,1,30,36,1.559997814,0.0,0.667,33.748,2.608,22.532,32.222,42220.576,190,2.059511893,11.83396289,9.54283142,0 -265,23,0,0,0,0,0,10,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,0,0,1.563689752,0.0,0.618,36.557,3.096,22.828,32.792,44383.149,188,2.104732584,12.08940243,9.754450527,0 +259,23,0,27,0,0,18,21,0,6,0,0,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,196,0,,,,0,1,210,271,1.549596988,0.048,0.552,42.976,4.416,23.822,34.317,49466.923,196,2.113641456,12.27828766,9.919281834,0 +260,23,0,0,0,33,62,112,0,0,0,20,0,1,0,0,201,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,206,0,,,,0,1,0,0,1.56385722,0.047,0.649,35.946,2.837,24.038,34.168,44873.157,206,2.103193883,12.07859894,9.744287819,0 +261,23,0,0,19,0,0,2,0,0,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,0,0,1.534858059,0.048,0.601,38.103,3.049,23.722,34.08,46197.08,202,2.136866262,12.21796486,9.861943387,0 +262,23,0,0,0,49,0,0,0,0,0,0,0,0,0,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,209,0,,,,0,1,0,0,1.000186157,0.047,0.649,35.946,2.837,24.038,34.168,44873.157,209,2.095760694,12.0470055,9.715881847,0 +263,23,0,0,0,0,0,80,0,2,0,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,182,0,,,,0,1,0,0,1.550566478,0.0,0.569,39.824,3.098,23.408,33.784,47108.987,182,2.099557612,12.21263587,9.861322335,0 +264,23,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,190,0,,,,0,1,30,36,1.559997814,0.0,0.667,33.748,2.608,22.532,32.222,42220.576,190,2.059511893,11.83396289,9.54283142,0 +265,23,0,0,0,0,0,11,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,0,0,1.563689752,0.0,0.618,36.557,3.096,22.828,32.792,44383.149,188,2.104732584,12.08940243,9.754450527,0 266,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,195,0,,,,0,1,0,0,0.971417589,0.0,0.667,33.748,2.608,22.532,32.222,42220.576,195,2.03551308,11.66766988,9.399758755,0 -267,23,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,172,0,,,,0,1,0,0,1.55649249,0.097,0.664,35.726,2.641,21.608,31.044,42732.802,172,2.057642075,11.80094911,9.517104873,0 -268,23,0,0,4,76,0,4,0,12,0,0,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,176,0,,,,0,1,135,171,1.540204826,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,176,2.044710644,11.74109252,9.455345132,0 -269,23,0,0,1,0,0,11,0,1,1,0,0,5,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,255,343,1.539182728,0.049,0.614,32.101,3.202,22.91,32.982,41653.507,167,1.984547253,11.58606047,9.352168472,0 +267,23,0,0,0,0,0,0,0,1,0,0,0,1,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,172,0,,,,0,1,0,0,1.55649249,0.097,0.664,35.726,2.641,21.608,31.044,42732.802,172,2.057642075,11.80094911,9.517104873,0 +268,23,0,0,7,62,1,5,0,11,0,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,176,0,,,,0,1,135,171,1.540204826,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,176,2.044710644,11.74109252,9.455345132,0 +269,23,0,0,0,0,0,11,0,1,1,0,0,2,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,255,343,1.539182728,0.049,0.614,32.101,3.202,22.91,32.982,41653.507,167,1.984547253,11.58606047,9.352168472,0 270,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,8.376,6.818,,181,0,,,,0,1,0,0,0.979002278,0.048,0.713,29.352,2.548,21.698,31.142,38716.448,181,2.02599371,11.62426088,9.35394683,0 271,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,10.95,6.591,,168,0,,,,0,1,0,0,0.966112405,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,168,1.987439815,11.39374053,9.16430113,0 -272,23,0,0,143,0,0,0,0,0,0,70,0,0,0,0,166,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,163,0,,,,0,1,0,0,1.551699415,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,163,2.007725666,11.51802506,9.271986862,0 -273,23,0,0,1,0,1,8,0,0,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,153,0,,,,0,1,111,139,1.560757132,0.146,0.808,22.236,1.841,21.667,31.346,34292.465,153,1.984962829,11.37948666,9.156539632,0 +272,23,0,0,94,0,0,0,0,0,0,65,0,0,0,0,227,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,163,0,,,,0,1,0,0,1.551699415,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,163,2.007725666,11.51802506,9.271986862,0 +273,23,0,0,1,0,1,9,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,153,0,,,,0,1,111,139,1.560757132,0.146,0.808,22.236,1.841,21.667,31.346,34292.465,153,1.984962829,11.37948666,9.156539632,0 274,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,157,0,,,,0,1,0,0,0.895743351,0.146,0.808,22.236,1.841,21.667,31.346,34292.465,157,1.926084592,11.21465915,9.012490327,0 275,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,142,0,,,,0,1,0,0,2.002379238,0.145,0.856,20.406,1.68,17.558,26.162,29803.15,142,1.948312358,11.12863488,8.949290063,0 -276,24,0,46,0,0,0,2,0,14,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,198,0,,,,0,1,176,254,1.561648459,0.0,0.405,36.902,3.156,26.052,36.865,47211.272,198,2.064622887,11.91652315,9.666892266,0 -277,24,0,0,5,0,0,8,0,12,2,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,85,119,1.552773535,0.0,0.502,46.735,4.599,24.869,35.706,52762.584,210,2.150409683,12.44304848,10.09275592,0 -278,24,0,0,0,0,73,17,0,2,0,3,0,2,0,0,122,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,201,0,,,,0,1,116,164,1.554670099,0.0,0.453,44.492,3.324,25.772,36.444,51798.889,201,2.09182573,12.09713476,9.801540316,0 +276,24,0,53,0,0,1,2,0,17,0,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,198,0,,,,0,1,176,254,1.561648459,0.0,0.405,36.902,3.156,26.052,36.865,47211.272,198,2.064622887,11.91652315,9.666892266,0 +277,24,0,0,2,0,0,7,0,27,2,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,85,119,1.552773535,0.0,0.502,46.735,4.599,24.869,35.706,52762.584,210,2.150409683,12.44304848,10.09275592,0 +278,24,0,0,0,0,38,15,0,1,0,5,0,4,0,0,104,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,201,0,,,,0,1,116,164,1.554670099,0.0,0.453,44.492,3.324,25.772,36.444,51798.889,201,2.09182573,12.09713476,9.801540316,0 279,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,185,3,,,,0,1,0,0,1.532054026,0.049,0.455,35.003,3.201,25.587,36.313,45642.066,185,2.035009056,11.79674832,9.54899359,0 -280,24,0,0,0,0,25,2,0,2,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,114,165,1.530505206,0.0,0.406,33.81,3.065,26.681,37.684,45756.223,188,2.035879144,11.76795432,9.530387661,0 -281,24,0,17,0,0,4,4,0,3,0,0,0,0,0,0,37,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,193,0,,,,0,1,118,171,1.536638037,0.048,0.503,41.378,3.302,23.826,34.376,48482.928,193,2.054095933,11.92394091,9.637086938,0 -282,24,0,7,21,0,2,9,0,25,0,0,0,0,0,0,56,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,175,0,,,,0,1,114,159,1.565940688,0.0,0.471,30.08,2.882,25.317,36.091,42349.22,175,2.001230484,11.62484941,9.392142123,0 -283,24,0,15,0,0,0,20,0,0,8,0,0,1,11,0,41,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,179,0,,,,0,1,208,302,1.546684042,0.0,0.52,34.12,3.371,23.345,33.682,43392.861,179,2.007047561,11.66911195,9.428556387,0 -284,25,0,0,0,0,70,26,0,2,0,0,0,0,0,0,115,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.091,,187,0,,,,0,1,173,252,3.795762831,0.242,0.278,32.054,2.464,25.551,35.398,43168.898,187,2.062812475,11.88452377,9.644152941,0 -285,25,0,41,0,0,0,0,0,8,0,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,177,0,,,,0,1,0,0,1.975582003,0.114,0.292,31.29,2.359,26.338,36.997,43703.9,177,2.044930551,11.80476163,9.5614995,0 -286,25,0,0,0,0,0,18,0,2,0,32,0,0,0,0,74,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,176,0,,,,0,1,167,246,1.444105868,0.0,0.422,31.7,2.886,26.082,37.026,43984.38,176,2.013433629,11.65846054,9.425928653,0 -287,25,0,0,0,3,0,450,0,0,302,0,0,0,0,0,528,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,169,0,,,,0,1,48,48,10.41109282,0.114,0.292,31.29,2.359,26.338,36.997,43703.9,169,2.002511956,11.53138919,9.338536305,0 +280,24,0,0,0,0,17,1,0,2,0,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,114,165,1.530505206,0.0,0.406,33.81,3.065,26.681,37.684,45756.223,188,2.035879144,11.76795432,9.530387661,0 +281,24,0,8,0,0,7,2,0,4,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,193,0,,,,0,1,118,171,1.536638037,0.048,0.503,41.378,3.302,23.826,34.376,48482.928,193,2.054095933,11.92394091,9.637086938,0 +282,24,0,11,10,0,4,4,0,17,0,0,0,0,0,0,62,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,175,0,,,,0,1,114,159,1.565940688,0.0,0.471,30.08,2.882,25.317,36.091,42349.22,175,2.001230484,11.62484941,9.392142123,0 +283,24,0,13,0,0,0,21,0,0,8,0,0,1,13,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,179,0,,,,0,1,208,302,1.546684042,0.0,0.52,34.12,3.371,23.345,33.682,43392.861,179,2.007047561,11.66911195,9.428556387,0 +284,25,0,0,0,0,72,32,0,4,0,0,0,0,0,0,70,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.091,,187,0,,,,0,1,173,252,3.795762831,0.242,0.278,32.054,2.464,25.551,35.398,43168.898,187,2.062812475,11.88452377,9.644152941,0 +285,25,0,37,0,0,0,0,0,5,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,177,0,,,,0,1,0,0,1.975582003,0.114,0.292,31.29,2.359,26.338,36.997,43703.9,177,2.044930551,11.80476163,9.5614995,0 +286,25,0,0,0,0,0,19,0,1,0,12,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,176,0,,,,0,1,167,246,1.444105868,0.0,0.422,31.7,2.886,26.082,37.026,43984.38,176,2.013433629,11.65846054,9.425928653,0 +287,25,0,0,0,6,0,278,0,0,249,0,0,0,0,0,686,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,169,0,,,,0,1,48,48,10.41109282,0.114,0.292,31.29,2.359,26.338,36.997,43703.9,169,2.002511956,11.53138919,9.338536305,0 288,25,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,152,3,,,,0,1,154,224,10.09064423,0.146,0.663,27.52,2.908,24.09,34.92,39961.608,152,1.880034351,10.90668797,8.793730527,0 -289,25,0,0,0,1,61,255,5,4,0,1,0,12,0,0,371,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,139,0,,,,0,1,159,223,62.52125272,0.0,0.471,24.111,2.018,23.863,33.838,37087.119,139,1.785092338,10.26614887,8.278244951,0 -290,26,0,0,1,0,0,36,0,2,0,0,0,0,0,49,103,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,254,435,1.586808704,0.051,0.568,31.379,2.972,24.164,34.964,42459.931,167,1.978449295,11.49764834,9.283117078,0 -291,26,0,0,0,0,2,2,0,0,0,0,0,1,0,0,3,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,156,0,,,,0,1,161,276,1.53410014,0.097,0.66,30.466,2.718,22.692,32.671,40408.081,156,1.914715476,11.19559074,9.025919658,0 -292,26,0,12,0,0,1,2,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,159,0,,,,0,1,83,144,1.545742269,0.097,0.614,29.399,2.936,23.673,34.241,40729.342,159,1.956099674,11.44295883,9.227238523,0 -293,26,0,0,0,0,0,11,0,0,1,0,0,1,0,1,25,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,162,0,,,,0,1,264,452,1.551007741,0.144,0.71,24.499,2.645,21.908,31.518,35851.037,162,2.041358245,11.70970065,9.429501453,0 -294,26,0,0,0,0,10,0,0,2,0,0,0,0,11,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,154,0,,,,0,1,129,218,1.55394871,0.195,0.759,23.256,2.725,21.633,31.261,34890.972,154,2.027090462,11.61583832,9.349141567,0 -295,26,0,0,0,0,57,46,0,0,0,0,0,0,2,0,67,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,135,0,,,,0,1,228,386,8.265948675,0.143,0.982,16.945,1.171,17.512,26.987,28115.93,135,1.851603922,10.83023076,8.726283434,0 -296,27,0,47,0,0,25,26,0,0,5,0,6,0,1,0,73,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,236,0,,,,0,1,218,340,3.107220922,0.049,0.465,49.646,5.533,24.959,35.276,54349.865,236,2.193311973,12.69264212,10.34279648,0 -297,27,0,0,0,0,1,6,0,0,19,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,225,3,,,,0,1,91,135,3.142687398,0.0,0.369,45.405,5.213,24.641,34.736,51290.401,225,2.14581909,12.37663249,10.09062093,0 -298,27,0,9,0,0,6,29,0,0,17,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,282,0,,,,0,1,13,20,1.552679047,0.0,0.323,68.682,5.719,29.678,39.887,69483.996,282,2.258216482,13.03237559,10.65924587,0 -299,27,0,12,1,0,1,15,0,0,25,0,8,7,6,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,102,155,1.551963926,0.0,0.369,56.153,4.894,29.025,39.541,61244.153,289,2.334557728,13.35804421,10.91014288,0 -300,27,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,276,1,,,,0,1,33,49,1.519457828,0.048,0.321,53.518,5.754,27.872,38.401,58828.121,276,2.235334085,12.91094957,10.54002788,0 -301,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,1,,,,0,1,27,41,1.523315676,0.096,0.37,43.999,4.994,24.367,33.966,49897.606,261,2.219985894,12.8153041,10.47976742,0 -302,27,0,31,0,0,0,3,0,6,2,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,258,1,,,,0,1,116,180,3.111282145,0.0,0.272,44.29,3.789,26.454,36.737,51857.178,258,2.243940571,12.96003384,10.58044322,0 -303,28,0,0,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,258,0,,,,0,1,0,0,1.562978934,0.098,0.419,53.762,6.084,29.421,40.888,60575.902,258,2.236910266,12.77700635,10.43038625,0 -304,28,0,6,0,0,0,57,0,0,0,0,0,0,0,0,106,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,248,0,,,,0,1,203,294,1.553764527,0.097,0.466,47.942,5.19,24.976,34.723,52905.523,248,2.188236348,12.6393873,10.28841123,0 -305,28,0,11,0,0,37,400,0,0,0,0,0,0,0,0,495,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,232,0,,,,0,1,0,0,1.572433568,0.048,0.514,47.744,4.675,24.698,34.964,52932.878,232,2.159743989,12.47970005,10.14391384,0 +289,25,0,0,0,2,75,140,10,6,0,1,0,17,0,0,340,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,139,0,,,,0,1,159,223,62.52125272,0.0,0.471,24.111,2.018,23.863,33.838,37087.119,139,1.785092338,10.26614887,8.278244951,0 +290,26,0,0,1,0,0,30,0,1,0,0,0,0,0,55,86,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,254,435,1.586808704,0.051,0.568,31.379,2.972,24.164,34.964,42459.931,167,1.978449295,11.49764834,9.283117078,0 +291,26,0,0,0,0,1,2,0,0,0,0,0,1,0,0,3,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,156,0,,,,0,1,161,276,1.53410014,0.097,0.66,30.466,2.718,22.692,32.671,40408.081,156,1.914715476,11.19559074,9.025919658,0 +292,26,0,10,0,0,2,1,0,0,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,159,0,,,,0,1,83,144,1.545742269,0.097,0.614,29.399,2.936,23.673,34.241,40729.342,159,1.956099674,11.44295883,9.227238523,0 +293,26,0,0,0,0,0,17,0,0,1,0,0,1,0,1,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,162,0,,,,0,1,264,452,1.551007741,0.144,0.71,24.499,2.645,21.908,31.518,35851.037,162,2.041358245,11.70970065,9.429501453,0 +294,26,0,0,0,0,20,1,0,2,0,0,0,0,17,0,48,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,154,0,,,,0,1,129,218,1.55394871,0.195,0.759,23.256,2.725,21.633,31.261,34890.972,154,2.027090462,11.61583832,9.349141567,0 +295,26,0,0,0,0,62,33,0,0,0,0,0,0,2,0,123,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,135,0,,,,0,1,228,386,8.265948675,0.143,0.982,16.945,1.171,17.512,26.987,28115.93,135,1.851603922,10.83023076,8.726283434,0 +296,27,0,35,0,0,11,27,0,0,5,0,6,0,1,0,100,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,236,0,,,,0,1,218,340,3.107220922,0.049,0.465,49.646,5.533,24.959,35.276,54349.865,236,2.193311973,12.69264212,10.34279648,0 +297,27,0,0,0,0,2,3,0,0,18,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,225,3,,,,0,1,91,135,3.142687398,0.0,0.369,45.405,5.213,24.641,34.736,51290.401,225,2.14581909,12.37663249,10.09062093,0 +298,27,0,6,0,0,10,24,0,0,19,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,282,0,,,,0,1,13,20,1.552679047,0.0,0.323,68.682,5.719,29.678,39.887,69483.996,282,2.258216482,13.03237559,10.65924587,0 +299,27,0,12,0,0,0,19,0,0,20,0,4,5,4,0,127,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,102,155,1.551963926,0.0,0.369,56.153,4.894,29.025,39.541,61244.153,289,2.334557728,13.35804421,10.91014288,0 +300,27,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,276,1,,,,0,1,33,49,1.519457828,0.048,0.321,53.518,5.754,27.872,38.401,58828.121,276,2.235334085,12.91094957,10.54002788,0 +301,27,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,1,,,,0,1,27,41,1.523315676,0.096,0.37,43.999,4.994,24.367,33.966,49897.606,261,2.219985894,12.8153041,10.47976742,0 +302,27,0,39,0,0,0,6,0,10,6,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,258,1,,,,0,1,116,180,3.111282145,0.0,0.272,44.29,3.789,26.454,36.737,51857.178,258,2.243940571,12.96003384,10.58044322,0 +303,28,0,0,0,0,0,0,0,0,0,14,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,258,0,,,,0,1,0,0,1.562978934,0.098,0.419,53.762,6.084,29.421,40.888,60575.902,258,2.236910266,12.77700635,10.43038625,0 +304,28,0,8,0,0,0,115,0,0,0,0,0,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,248,0,,,,0,1,203,294,1.553764527,0.097,0.466,47.942,5.19,24.976,34.723,52905.523,248,2.188236348,12.6393873,10.28841123,0 +305,28,0,20,0,0,28,333,0,0,0,0,0,0,0,0,654,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,232,0,,,,0,1,0,0,1.572433568,0.048,0.514,47.744,4.675,24.698,34.964,52932.878,232,2.159743989,12.47970005,10.14391384,0 306,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,0,0,1.03968413,0.05,0.611,45.249,4.544,27.307,38.77,53772.248,243,2.212386859,12.70836715,10.2781441,0 -307,28,0,0,1,0,0,21,0,0,21,1,0,0,0,0,48,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,238,0,,,,0,1,141,202,1.560517261,0.05,0.611,45.249,4.544,27.307,38.77,53772.248,238,2.228168239,12.73195057,10.32410593,0 -308,28,0,9,0,0,15,1,0,13,11,0,0,0,0,21,94,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.515976235,0.048,0.561,43.087,4.497,23.893,33.987,49327.143,240,2.182271499,12.47109024,10.12030478,0 -309,28,0,0,0,0,0,34,0,4,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,272,0,,,,0,1,0,0,1.550400251,0.049,0.37,50.672,4.833,28.106,39.052,57422.78,272,2.31507596,13.24822139,10.81997112,0 -310,28,0,0,1,0,2,6,0,10,2,0,1,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,294,0,,,,0,1,70,93,1.552720881,0.048,0.371,60.701,5.018,28.794,39.182,63925.283,294,2.327941878,13.30425526,10.90363725,0 -311,28,0,6,1,0,4,8,0,0,11,0,1,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,285,0,,,,0,1,1,1,1.553691021,0.0,0.419,57.803,5.067,29.438,40.243,62749.492,285,2.322350924,13.26667013,10.86717099,0 -312,28,0,0,0,0,0,0,0,4,13,0,9,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,12.284,10.0,,301,0,,,,0,1,0,0,1.578158085,0.0,0.312,86.212,7.215,22.006,29.469,74035.646,301,2.154836063,12.32292637,10.12909205,0 -313,28,0,0,0,0,0,104,0,0,117,0,0,5,0,0,133,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,302,0,,,,0,1,0,0,1.576362035,0.0,0.341,89.383,6.489,25.087,33.261,78491.97,302,2.270538432,13.0284507,10.72835489,0 +307,28,0,0,1,0,0,27,0,0,17,1,0,0,0,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,238,0,,,,0,1,141,202,1.560517261,0.05,0.611,45.249,4.544,27.307,38.77,53772.248,238,2.228168239,12.73195057,10.32410593,0 +308,28,0,11,0,0,20,3,0,10,16,0,0,0,0,15,55,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.515976235,0.048,0.561,43.087,4.497,23.893,33.987,49327.143,240,2.182271499,12.47109024,10.12030478,0 +309,28,0,0,0,0,0,32,0,2,0,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,272,0,,,,0,1,0,0,1.550400251,0.049,0.37,50.672,4.833,28.106,39.052,57422.78,272,2.31507596,13.24822139,10.81997112,0 +310,28,0,0,1,0,1,3,0,4,2,0,1,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,294,0,,,,0,1,70,93,1.552720881,0.048,0.371,60.701,5.018,28.794,39.182,63925.283,294,2.327941878,13.30425526,10.90363725,0 +311,28,0,13,3,0,6,7,0,0,6,0,1,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,285,0,,,,0,1,1,1,1.553691021,0.0,0.419,57.803,5.067,29.438,40.243,62749.492,285,2.322350924,13.26667013,10.86717099,0 +312,28,0,0,0,0,0,0,0,2,12,0,7,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,12.284,10.0,,301,0,,,,0,1,0,0,1.578158085,0.0,0.312,86.212,7.215,22.006,29.469,74035.646,301,2.154836063,12.32292637,10.12909205,0 +313,28,0,0,0,0,0,119,0,0,74,0,0,4,0,0,143,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,302,0,,,,0,1,0,0,1.576362035,0.0,0.341,89.383,6.489,25.087,33.261,78491.97,302,2.270538432,13.0284507,10.72835489,0 314,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,299,0,,,,0,1,0,0,1.413162847,0.097,0.345,73.621,6.61,22.831,30.98,66944.079,299,2.131093548,12.24370095,10.06667116,0 -315,28,0,22,0,0,26,59,0,5,18,0,0,0,0,0,237,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,0,0,1.509266247,0.097,0.373,71.758,6.168,23.006,31.313,65965.169,295,2.269711046,12.97443034,10.66133463,0 -316,28,0,5,2,0,1,43,0,2,519,0,0,1,0,1,317,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,300,0,,,,0,1,223,327,1.55616323,0.049,0.39,83.289,6.768,24.17,32.11,73855.89,300,2.299737698,13.15846528,10.82763146,0 -317,28,0,0,2,0,0,22,0,0,5,0,0,0,35,0,47,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,0,0,1.53595209,0.044,0.42,70.0,5.856,25.107,33.297,66110.285,297,2.328376121,13.30874215,10.92094393,0 -318,28,0,55,0,0,38,360,0,6,10,0,0,0,36,0,599,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.54635006,0.049,0.371,72.097,5.302,25.567,34.101,67966.599,306,2.339576093,13.34195541,10.9791632,0 -319,28,0,0,0,0,0,6,0,0,0,0,2,15,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,0,,,,0,1,14,15,4.642829854,0.079,0.547,61.652,7.88,21.706,29.555,58372.332,292,2.166344681,12.40140288,10.17673026,0 -320,28,0,46,311,0,0,11,0,5,21,0,0,0,0,0,454,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,304,0,,,,0,1,61,80,1.54985728,0.0,0.37,71.401,5.314,26.896,35.698,68543.084,304,2.332403076,13.32279869,10.93233239,0 -321,28,0,64,2,0,0,200,0,8,5,0,0,5,0,0,376,0,0,PORTLAND,PORTLAND,219,2.4,0.0,0.0,,301,0,,,,0,1,0,0,1.55719674,0.0,0.419,61.231,5.343,24.823,33.627,60709.574,301,2.323324618,13.26525281,10.88426707,0 -322,28,0,0,0,0,0,246,0,4,0,0,0,5,0,0,689,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,291,0,,,,0,1,2,2,1.546338111,0.0,0.468,55.389,5.718,27.044,36.456,58780.721,291,2.305558845,13.16070428,10.79511753,0 -323,28,0,83,202,0,0,37,0,0,112,0,0,0,0,0,467,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,1,1,1.552013873,0.048,0.421,58.674,5.149,28.666,38.946,62476.723,297,2.319279656,13.26984943,10.88248836,0 +315,28,0,25,0,0,21,64,0,7,23,0,0,0,0,0,190,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,0,0,1.509266247,0.097,0.373,71.758,6.168,23.006,31.313,65965.169,295,2.269711046,12.97443034,10.66133463,0 +316,28,0,5,3,0,2,28,0,2,484,0,0,2,0,2,310,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,300,0,,,,0,1,223,327,1.55616323,0.049,0.39,83.289,6.768,24.17,32.11,73855.89,300,2.299737698,13.15846528,10.82763146,0 +317,28,0,0,2,0,0,27,0,0,3,0,0,0,14,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,0,0,1.53595209,0.044,0.42,70.0,5.856,25.107,33.297,66110.285,297,2.328376121,13.30874215,10.92094393,0 +318,28,0,59,0,0,24,351,0,4,11,0,0,0,22,0,455,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.54635006,0.049,0.371,72.097,5.302,25.567,34.101,67966.599,306,2.339576093,13.34195541,10.9791632,0 +319,28,0,0,0,0,0,5,0,0,0,0,2,12,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,0,,,,0,1,14,15,4.642829854,0.079,0.547,61.652,7.88,21.706,29.555,58372.332,292,2.166344681,12.40140288,10.17673026,0 +320,28,0,45,273,0,0,14,0,8,39,0,0,0,0,0,336,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,304,0,,,,0,1,61,80,1.54985728,0.0,0.37,71.401,5.314,26.896,35.698,68543.084,304,2.332403076,13.32279869,10.93233239,0 +321,28,0,110,3,0,0,91,0,8,6,0,0,4,0,0,345,0,0,PORTLAND,PORTLAND,219,2.4,0.0,0.0,,301,0,,,,0,1,0,0,1.55719674,0.0,0.419,61.231,5.343,24.823,33.627,60709.574,301,2.323324618,13.26525281,10.88426707,0 +322,28,0,0,0,0,0,580,0,2,0,0,0,3,0,0,369,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,291,0,,,,0,1,2,2,1.546338111,0.0,0.468,55.389,5.718,27.044,36.456,58780.721,291,2.305558845,13.16070428,10.79511753,0 +323,28,0,36,244,0,0,58,0,0,114,0,0,0,0,0,362,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,1,1,1.552013873,0.048,0.421,58.674,5.149,28.666,38.946,62476.723,297,2.319279656,13.26984943,10.88248836,0 324,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,0,0,1.904700717,0.048,0.452,52.783,5.383,26.39,36.126,56901.764,293,2.295072419,13.17995162,10.78839437,0 -325,28,0,32,0,0,63,36,0,3,0,0,17,1,0,0,104,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,214,312,1.563498054,0.048,0.452,52.783,5.383,26.39,36.126,56901.764,289,2.298562095,13.14444082,10.76273399,0 -326,28,0,78,0,0,5,151,0,24,20,15,0,2,26,0,653,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,0,0,1.551952779,0.0,0.468,51.935,5.254,31.678,43.968,61378.504,289,2.310462388,13.20424641,10.80596408,0 -327,28,0,0,0,0,0,13,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,283,0,,,,0,1,0,0,1.544594166,0.0,0.5,52.569,5.294,28.986,39.787,59108.09,283,2.289005034,13.092988,10.71064922,0 -328,28,0,86,0,0,0,74,0,1,0,0,0,0,20,0,138,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,51,68,1.551603733,0.098,0.419,55.869,5.703,31.052,43.185,63394.938,280,2.300165262,13.15886846,10.73884493,0 -329,28,0,0,0,0,6,3,0,0,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,268,0,,,,0,1,25,35,1.550607631,0.146,0.468,57.152,5.168,30.975,43.123,64175.586,268,2.283650967,13.05131595,10.61966824,0 +325,28,0,28,1,0,57,32,0,2,0,0,12,1,0,0,245,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,214,312,1.563498054,0.048,0.452,52.783,5.383,26.39,36.126,56901.764,289,2.298562095,13.14444082,10.76273399,0 +326,28,0,168,0,0,4,111,0,65,20,14,0,1,32,0,576,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,0,0,1.551952779,0.0,0.468,51.935,5.254,31.678,43.968,61378.504,289,2.310462388,13.20424641,10.80596408,0 +327,28,0,0,0,0,1,27,0,0,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,283,0,,,,0,1,0,0,1.544594166,0.0,0.5,52.569,5.294,28.986,39.787,59108.09,283,2.289005034,13.092988,10.71064922,0 +328,28,0,52,0,0,0,62,0,1,0,0,0,0,18,0,176,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,51,68,1.551603733,0.098,0.419,55.869,5.703,31.052,43.185,63394.938,280,2.300165262,13.15886846,10.73884493,0 +329,28,0,0,0,0,3,4,0,0,1,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,268,0,,,,0,1,25,35,1.550607631,0.146,0.468,57.152,5.168,30.975,43.123,64175.586,268,2.283650967,13.05131595,10.61966824,0 330,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,275,0,,,,0,1,0,0,2.889848337,0.149,0.518,57.219,5.021,29.399,41.316,63062.295,275,2.263976285,13.01918607,10.60465211,0 -331,28,0,0,21,0,233,81,0,5,0,0,0,4,0,0,355,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,0,,,,0,1,146,212,3.122484981,0.149,0.518,57.219,5.021,29.399,41.316,63062.295,269,2.276950133,13.03815285,10.60103278,0 +331,28,0,0,12,0,214,186,0,6,0,0,0,5,0,0,335,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,0,,,,0,1,146,212,3.122484981,0.149,0.518,57.219,5.021,29.399,41.316,63062.295,269,2.276950133,13.03815285,10.60103278,0 332,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,256,0,,,,0,1,0,0,1.001645027,0.098,0.564,47.599,4.379,28.108,39.699,55871.22,256,2.227537385,12.76534271,10.35373582,0 -333,28,0,0,2,0,0,7,0,3,127,0,0,0,0,0,98,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.045,,253,0,,,,0,1,111,157,1.557676301,0.098,0.564,47.599,4.379,28.108,39.699,55871.22,253,2.244195196,12.82744087,10.41002556,0 -334,28,0,0,0,0,0,18,0,0,0,0,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,256,0,,,,0,1,0,0,1.543314839,0.048,0.561,43.087,4.497,23.893,33.987,49327.143,256,2.273889501,13.00555748,10.56322333,0 -335,29,0,0,0,0,0,15,0,2,0,0,0,0,163,0,167,0,0,PORTLAND,PORTLAND,487,2.4,0.0,0.0,,248,3,,,,0,1,0,0,1.574354051,0.031,0.205,83.895,5.98,28.593,37.995,78009.674,248,2.212609453,12.78721055,10.49884551,0 -336,29,0,0,3,2001,0,10,0,3,0,0,0,0,0,3,1946,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,13,13,15.53734547,0.049,0.271,44.29,3.789,26.454,36.737,51857.178,223,2.149267796,12.4618945,10.15298589,0 -337,29,0,8,0,0,22,21,8,69,28,0,0,0,0,0,194,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,1.601827962,0.0,0.272,44.29,3.789,26.454,36.737,51857.178,251,2.245625452,12.95492688,10.59365852,0 -338,29,0,23,0,0,2,19,0,1,15,24,0,3,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,222,0,,,,0,1,315,427,3.170323412,0.0,0.32,46.801,5.017,25.549,35.768,52844.057,222,2.131865683,12.28213675,10.01526799,0 -339,29,0,0,0,0,0,8,0,14,0,1,15,1,4,0,41,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.182,,281,0,,,,0,1,69,90,1.551951663,0.0,0.272,52.279,5.514,24.848,33.715,55036.507,281,2.269645251,13.15703284,10.76679936,0 -340,29,0,4,0,0,0,45,0,1,10,0,0,3,0,0,84,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,267,0,,,,0,1,146,193,1.567325204,0.0,0.223,50.592,5.32,24.998,33.909,54080.842,267,2.255766261,13.03285865,10.64545784,0 -341,29,0,6,0,0,0,13,0,3,1,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,272,0,,,,0,1,108,142,1.554247182,0.0,0.223,61.077,5.386,23.207,31.025,58945.213,272,2.278022443,13.18087757,10.81273143,0 +333,28,0,0,2,0,0,8,0,4,126,0,0,0,0,0,121,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.045,,253,0,,,,0,1,111,157,1.557676301,0.098,0.564,47.599,4.379,28.108,39.699,55871.22,253,2.244195196,12.82744087,10.41002556,0 +334,28,0,0,0,0,0,40,0,0,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,256,0,,,,0,1,0,0,1.543314839,0.048,0.561,43.087,4.497,23.893,33.987,49327.143,256,2.273889501,13.00555748,10.56322333,0 +335,29,0,0,0,0,0,8,0,2,0,1,0,0,125,0,94,0,0,PORTLAND,PORTLAND,487,2.4,0.0,0.0,,248,3,,,,0,1,0,0,1.574354051,0.031,0.205,83.895,5.98,28.593,37.995,78009.674,248,2.212609453,12.78721055,10.49884551,0 +336,29,0,0,5,1832,0,12,0,2,0,0,0,0,0,3,805,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,13,13,15.53734547,0.049,0.271,44.29,3.789,26.454,36.737,51857.178,223,2.149267796,12.4618945,10.15298589,0 +337,29,0,7,0,0,20,39,9,66,15,0,0,0,0,0,148,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,1.601827962,0.0,0.272,44.29,3.789,26.454,36.737,51857.178,251,2.245625452,12.95492688,10.59365852,0 +338,29,0,22,0,0,1,27,0,0,15,14,0,2,0,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,222,0,,,,0,1,315,427,3.170323412,0.0,0.32,46.801,5.017,25.549,35.768,52844.057,222,2.131865683,12.28213675,10.01526799,0 +339,29,0,0,0,0,1,6,0,16,0,1,12,0,13,0,61,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.182,,281,0,,,,0,1,69,90,1.551951663,0.0,0.272,52.279,5.514,24.848,33.715,55036.507,281,2.269645251,13.15703284,10.76679936,0 +340,29,0,1,0,0,0,49,0,0,7,0,0,7,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,267,0,,,,0,1,146,193,1.567325204,0.0,0.223,50.592,5.32,24.998,33.909,54080.842,267,2.255766261,13.03285865,10.64545784,0 +341,29,0,10,0,0,0,23,0,3,2,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,272,0,,,,0,1,108,142,1.554247182,0.0,0.223,61.077,5.386,23.207,31.025,58945.213,272,2.278022443,13.18087757,10.81273143,0 342,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,3,,,,0,1,0,0,0.930306443,0.0,0.174,67.817,5.269,23.204,30.908,63183.813,255,2.267881377,13.11517211,10.75711573,0 343,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,199,0,,,,0,1,0,0,1.539063639,0.0,0.096,63.039,2.432,22.716,27.678,58058.647,199,2.101164805,12.13054818,9.891978125,0 -344,30,0,0,0,0,0,80,0,10,2,0,0,2,0,3,158,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,243,329,32.933146,0.256,0.475,7.771,0.024,3.87,5.17,8282.704,167,1.939191517,11.18146569,9.116283866,0 -345,30,0,0,0,796,147,0,0,0,0,0,0,0,0,0,882,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,223,260,1.544628791,0.0,0.046,87.527,3.243,27.937,36.821,79583.315,223,2.165218044,12.51670273,10.23522873,0 -346,30,0,4,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,255,259,4.699753399,0.0,0.0,73.108,3.014,29.354,38.402,71366.215,223,2.166596938,12.52622203,10.24904637,0 -347,30,0,0,0,0,48,0,0,0,0,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.4,7.0,5.698,,210,0,,,,0,1,48,48,1.556524146,0.0,0.0,73.849,1.654,23.47,29.595,66204.252,210,2.129814307,12.28276992,10.04587883,0 -348,30,0,16,0,0,1,79,0,0,0,2,0,0,1,11,144,0,0,PORTLAND,PORTLAND,0,2.4,11.5,9.362,,195,2,,,,0,1,614,836,21.7761575,0.099,0.099,41.262,1.858,20.901,26.625,43447.678,195,2.08075074,11.99676363,9.809804901,0 -349,31,0,0,0,0,0,2,0,3,10,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,14.5,11.818,,307,0,,,,0,1,53,81,1.552182337,0.0,0.321,84.419,5.665,27.892,37.075,77756.37,307,2.344921446,13.40008973,11.01859634,0 -350,31,0,0,4,0,0,47,0,4,7,0,0,3,5,0,106,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,55,85,1.551950081,0.049,0.322,66.787,5.253,29.214,39.101,67767.893,300,2.340866057,13.37032777,10.95821157,0 -351,31,0,124,10,0,0,17,0,0,9,0,0,0,0,0,133,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.551974891,0.0,0.272,98.372,5.382,24.852,32.648,83852.742,305,2.356906152,13.4994068,11.09932396,0 -352,31,0,38,218,0,0,17,0,23,3,0,0,0,0,0,364,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,115,192,1.55109412,0.048,0.273,78.494,5.215,28.104,37.467,74214.833,293,2.35207431,13.4308447,11.03377799,0 -353,31,0,14,0,0,0,459,0,0,34,0,0,1,0,0,377,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,0,0,1.578656349,0.0,0.319,95.703,6.068,24.817,32.566,82091.629,309,2.315072331,13.30982026,10.9437324,0 -354,31,0,0,0,0,0,0,0,0,204,0,0,0,0,0,134,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,0,,,,0,1,0,0,1.561009227,0.013,0.257,97.89,5.742,26.23,33.954,84379.985,313,2.339764731,13.44844529,11.06057927,0 -355,31,0,64,0,0,0,419,0,0,39,0,0,2,0,0,632,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,2,2,1.585610986,0.049,0.368,86.488,6.017,24.698,32.783,76333.294,308,2.356572952,13.5229894,11.13345924,0 -356,31,0,85,0,0,0,4,0,0,1,0,0,0,0,0,113,0,0,PORTLAND,PORTLAND,0,2.4,10.75,10.682,,312,0,,,,0,1,0,0,1.551592519,0.048,0.322,86.763,5.593,26.161,34.669,77716.156,312,2.350981717,13.45624267,11.06373284,0 -357,31,0,15,0,0,0,12,0,2,21,102,0,0,0,0,173,0,0,PORTLAND,PORTLAND,12,2.4,0.0,0.0,,317,0,,,,0,1,100,157,1.541545899,0.0,0.319,101.174,5.81,25.666,33.417,86137.977,317,2.368550777,13.60095331,11.18437083,0 -358,31,0,79,0,0,0,3,0,5,5,13,0,0,0,0,113,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,0,,,,0,1,0,0,1.547038441,0.0,0.273,92.502,6.269,24.973,32.546,80031.068,315,2.365947403,13.58836666,11.17829102,0 +344,30,0,0,0,0,0,155,0,6,1,0,0,1,0,6,161,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,243,329,32.933146,0.256,0.475,7.771,0.024,3.87,5.17,8282.704,167,1.939191517,11.18146569,9.116283866,0 +345,30,0,0,0,727,130,0,0,0,0,0,0,0,0,0,856,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,223,260,1.544628791,0.0,0.046,87.527,3.243,27.937,36.821,79583.315,223,2.165218044,12.51670273,10.23522873,0 +346,30,0,1,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,255,259,4.699753399,0.0,0.0,73.108,3.014,29.354,38.402,71366.215,223,2.166596938,12.52622203,10.24904637,0 +347,30,0,0,0,0,36,0,0,0,0,0,0,0,0,0,30,0,0,PORTLAND,PORTLAND,0,2.4,7.0,5.698,,210,0,,,,0,1,48,48,1.556524146,0.0,0.0,73.849,1.654,23.47,29.595,66204.252,210,2.129814307,12.28276992,10.04587883,0 +348,30,0,9,0,0,0,89,0,1,0,1,0,0,0,9,129,0,0,PORTLAND,PORTLAND,0,2.4,11.5,9.362,,195,2,,,,0,1,614,836,21.7761575,0.099,0.099,41.262,1.858,20.901,26.625,43447.678,195,2.08075074,11.99676363,9.809804901,0 +349,31,0,0,0,0,0,4,0,6,9,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,14.5,11.818,,307,0,,,,0,1,53,81,1.552182337,0.0,0.321,84.419,5.665,27.892,37.075,77756.37,307,2.344921446,13.40008973,11.01859634,0 +350,31,0,0,4,0,0,55,0,3,7,0,0,5,5,0,101,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,55,85,1.551950081,0.049,0.322,66.787,5.253,29.214,39.101,67767.893,300,2.340866057,13.37032777,10.95821157,0 +351,31,0,114,6,0,0,13,0,0,8,0,0,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.551974891,0.0,0.272,98.372,5.382,24.852,32.648,83852.742,305,2.356906152,13.4994068,11.09932396,0 +352,31,0,21,311,0,0,26,0,22,5,0,0,0,0,0,365,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,115,192,1.55109412,0.048,0.273,78.494,5.215,28.104,37.467,74214.833,293,2.35207431,13.4308447,11.03377799,0 +353,31,0,14,0,0,0,452,0,0,23,0,0,0,0,0,448,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,0,0,1.578656349,0.0,0.319,95.703,6.068,24.817,32.566,82091.629,309,2.315072331,13.30982026,10.9437324,0 +354,31,0,0,0,0,0,0,0,0,203,0,0,0,0,0,156,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,0,,,,0,1,0,0,1.561009227,0.013,0.257,97.89,5.742,26.23,33.954,84379.985,313,2.339764731,13.44844529,11.06057927,0 +355,31,0,45,0,0,0,663,0,0,30,0,0,1,0,0,552,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,2,2,1.585610986,0.049,0.368,86.488,6.017,24.698,32.783,76333.294,308,2.356572952,13.5229894,11.13345924,0 +356,31,0,133,0,0,0,1,0,0,2,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.4,10.75,10.682,,312,0,,,,0,1,0,0,1.551592519,0.048,0.322,86.763,5.593,26.161,34.669,77716.156,312,2.350981717,13.45624267,11.06373284,0 +357,31,0,9,0,0,0,21,0,3,30,155,0,0,0,0,232,0,0,PORTLAND,PORTLAND,12,2.4,0.0,0.0,,317,0,,,,0,1,100,157,1.541545899,0.0,0.319,101.174,5.81,25.666,33.417,86137.977,317,2.368550777,13.60095331,11.18437083,0 +358,31,0,103,0,0,0,5,0,2,7,12,0,1,0,0,150,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,0,,,,0,1,0,0,1.547038441,0.0,0.273,92.502,6.269,24.973,32.546,80031.068,315,2.365947403,13.58836666,11.17829102,0 359,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,3,,,,0,1,0,0,0.951464236,0.0,0.124,122.436,6.091,22.334,27.76,96125.576,313,2.3930015,13.76398846,11.32513638,0 -360,32,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,324,0,,,,0,1,3,4,1.5530047,0.0,0.173,111.277,6.379,22.991,28.83,89668.631,324,2.385887014,13.72409008,11.28991719,0 -361,32,0,0,0,3,74,0,0,0,0,0,0,0,0,0,166,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,298,0,,,,0,1,193,292,1.574912172,0.03,0.094,122.967,6.481,21.636,26.888,95907.583,298,2.370535343,13.75226301,11.3189264,0 -362,32,0,6,0,0,0,62,0,0,28,18,0,238,0,0,252,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.0,,318,0,,,,0,1,33,33,1.57707583,0.0,0.222,104.905,5.859,26.0,33.132,88343.692,318,2.377144061,13.67257212,11.24201093,0 -363,32,0,0,0,0,0,100,0,0,2,20,0,0,0,0,132,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,291,0,,,,0,1,0,0,1.538266286,0.08,0.144,118.823,5.94,23.436,29.024,94621.973,291,2.368912743,13.71599513,11.29470141,0 +360,32,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,324,0,,,,0,1,3,4,1.5530047,0.0,0.173,111.277,6.379,22.991,28.83,89668.631,324,2.385887014,13.72409008,11.28991719,0 +361,32,0,0,0,4,67,0,0,0,0,0,1,0,0,0,138,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,298,0,,,,0,1,193,292,1.574912172,0.03,0.094,122.967,6.481,21.636,26.888,95907.583,298,2.370535343,13.75226301,11.3189264,0 +362,32,0,10,0,0,0,64,0,0,17,9,0,198,0,0,298,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.0,,318,0,,,,0,1,33,33,1.57707583,0.0,0.222,104.905,5.859,26.0,33.132,88343.692,318,2.377144061,13.67257212,11.24201093,0 +363,32,0,0,0,0,0,146,0,0,5,32,0,0,0,0,125,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,291,0,,,,0,1,0,0,1.538266286,0.08,0.144,118.823,5.94,23.436,29.024,94621.973,291,2.368912743,13.71599513,11.29470141,0 364,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,304,3,,,,0,1,0,0,0.94620629,0.098,0.273,110.624,6.256,25.268,31.821,91164.347,304,2.365386514,13.69247184,11.26957439,0 -365,32,0,11,0,0,0,1,0,15,0,0,0,0,1,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,0,,,,0,1,0,0,1.550952921,0.047,0.222,109.587,5.485,23.855,30.129,89418.289,315,2.381816195,13.68763719,11.25870609,0 -366,32,0,66,0,0,0,2,0,0,10,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.4,12.625,10.277,,323,0,,,,0,1,105,161,1.558770187,0.0,0.274,98.571,6.54,25.128,32.601,83950.067,323,2.374229884,13.64154228,11.21837657,0 -367,32,0,3,1,0,0,27,0,0,0,0,0,0,0,3,41,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,0,0,1.546132848,0.048,0.096,99.167,4.972,22.5,28.356,81615.097,280,2.313366652,13.38222953,11.01526204,0 +365,32,0,7,0,0,0,1,0,20,0,0,0,0,1,0,51,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,0,,,,0,1,0,0,1.550952921,0.047,0.222,109.587,5.485,23.855,30.129,89418.289,315,2.381816195,13.68763719,11.25870609,0 +366,32,0,67,0,0,0,2,0,0,10,0,0,0,0,0,69,0,0,PORTLAND,PORTLAND,0,2.4,12.625,10.277,,323,0,,,,0,1,105,161,1.558770187,0.0,0.274,98.571,6.54,25.128,32.601,83950.067,323,2.374229884,13.64154228,11.21837657,0 +367,32,0,2,2,0,0,54,0,0,0,0,0,0,1,3,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,0,0,1.546132848,0.048,0.096,99.167,4.972,22.5,28.356,81615.097,280,2.313366652,13.38222953,11.01526204,0 368,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,3,,,,0,1,0,0,0.971165152,0.079,0.127,93.429,4.649,22.16,28.08,77765.93,292,2.363648377,13.66365403,11.2497378,0 -369,32,0,0,0,0,0,75,0,0,0,5,0,0,0,0,102,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.552007452,0.078,0.174,91.583,5.42,24.995,32.649,79508.662,306,2.353364447,13.60849793,11.19487586,0 -370,32,0,29,0,0,0,13,0,0,0,0,0,0,0,0,97,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,0,0,1.556922723,0.0,0.225,101.095,5.166,25.366,33.097,85883.016,316,2.372176519,13.63139158,11.2075853,0 -371,32,0,7,0,0,64,3,0,0,2,0,0,1,0,0,51,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,273,0,,,,0,1,93,140,1.553719915,0.0,0.096,91.931,4.852,22.292,28.398,77010.636,273,2.305325049,13.35243029,10.96451569,0 +369,32,0,0,0,0,0,76,0,0,0,3,0,0,0,0,132,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.552007452,0.078,0.174,91.583,5.42,24.995,32.649,79508.662,306,2.353364447,13.60849793,11.19487586,0 +370,32,0,80,0,0,0,8,0,0,0,0,0,0,0,0,97,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,0,0,1.556922723,0.0,0.225,101.095,5.166,25.366,33.097,85883.016,316,2.372176519,13.63139158,11.2075853,0 +371,32,0,5,0,0,58,3,0,0,5,0,0,2,0,0,74,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,273,0,,,,0,1,93,140,1.553719915,0.0,0.096,91.931,4.852,22.292,28.398,77010.636,273,2.305325049,13.35243029,10.96451569,0 372,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,284,3,,,,0,1,0,0,0.962069014,0.03,0.126,88.964,4.85,23.578,30.034,76159.037,284,2.304470324,13.33276031,10.96554675,0 -373,32,0,66,0,0,0,0,0,5,1,0,0,2,0,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,6,9,1.552775014,0.078,0.174,91.583,5.42,24.995,32.649,79508.662,295,2.294931457,13.26900255,10.90857578,0 -374,32,0,15,0,0,7,15,0,1,2,2,0,6,0,0,34,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,144,219,1.551973498,0.0,0.224,82.972,5.442,28.659,37.719,77242.101,308,2.370706354,13.58711778,11.18221259,0 +373,32,0,78,0,0,0,0,0,5,1,0,0,1,0,0,103,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,6,9,1.552775014,0.078,0.174,91.583,5.42,24.995,32.649,79508.662,295,2.294931457,13.26900255,10.90857578,0 +374,32,0,14,0,0,6,16,0,1,2,2,0,4,0,0,86,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,144,219,1.551973498,0.0,0.224,82.972,5.442,28.659,37.719,77242.101,308,2.370706354,13.58711778,11.18221259,0 375,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,3,,,,0,1,0,0,0.95024674,0.079,0.126,89.501,5.737,25.263,33.312,78600.453,269,2.296917773,13.28414785,10.90535381,0 -376,32,0,16,0,0,5,17,0,6,10,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,17,25,1.553398328,0.05,0.097,83.883,5.402,23.174,30.297,73075.271,261,2.277670986,13.20590759,10.83208787,0 -377,32,0,0,0,0,0,61,0,75,5,1,0,0,0,0,123,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,285,0,,,,0,1,0,0,1.545338141,0.049,0.176,67.453,4.938,23.105,30.362,62601.607,285,2.283871149,13.21929033,10.84128055,0 -378,32,0,83,0,0,22,50,0,0,12,6,0,19,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,2,3,1.559418077,0.05,0.225,75.566,6.056,26.929,35.657,71182.725,295,2.282198181,13.15776715,10.8291717,0 -379,33,0,33,0,0,0,61,0,0,0,41,7,0,0,0,164,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,257,0,,,,0,1,0,0,1.566117769,0.0,0.024,107.662,5.357,17.784,21.772,82837.654,257,2.362016353,13.70625794,11.27343462,0 -380,33,0,27,0,0,2,12,0,5,2,0,0,0,0,0,65,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,111,114,1.524361049,0.0,0.046,121.131,6.207,17.745,21.826,91492.416,274,2.370401532,13.75001297,11.31911009,0 -381,33,0,54,0,0,88,2,0,0,0,0,0,0,0,0,156,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,270,0,,,,0,1,228,229,1.557122682,0.0,0.0,98.839,4.84,20.214,25.285,79439.326,270,2.367106534,13.71413998,11.28404244,0 -382,33,0,13,0,0,141,263,0,0,0,36,0,0,0,0,307,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.95,,248,0,,,,0,1,0,0,1.549617566,0.0,0.0,98.839,4.84,20.214,25.285,79439.326,248,2.360775467,13.68907595,11.2378975,0 -383,33,0,0,0,0,105,70,0,0,2,0,0,0,0,12,173,0,0,PORTLAND,PORTLAND,0,2.4,13.0,9.773,,242,0,,,,0,1,192,196,1.548698687,0.0,0.027,96.549,2.342,21.817,26.61,78822.051,242,2.281478066,13.21390671,10.84265598,0 -384,33,0,0,0,0,0,126,0,0,4,0,0,0,0,0,234,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,263,0,,,,0,1,1,1,1.558127366,0.0,0.048,101.162,5.093,21.288,26.636,81790.884,263,2.307767556,13.35940405,10.97612609,0 -385,33,0,0,0,0,80,24,0,29,0,0,0,0,0,0,121,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,234,0,,,,0,1,78,79,1.551986772,0.0,0.027,96.549,2.342,21.817,26.61,78822.051,234,2.257162988,13.08911365,10.71735921,0 -386,33,0,0,0,0,10,2,0,0,8,0,28,0,0,0,80,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,50,50,1.551930911,0.0,0.048,97.092,5.688,20.899,26.61,79168.925,253,2.287690982,13.27144393,10.88573706,0 -387,33,0,0,0,0,2,6,0,6,0,0,0,0,0,37,70,0,0,PORTLAND,PORTLAND,0,2.4,11.32,11.176,,231,0,,,,0,1,0,0,1.526101142,0.0,0.028,86.199,3.714,26.45,34.114,77000.711,231,2.184796477,12.66161857,10.36155557,0 -388,33,0,0,0,0,0,10,0,10,0,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,248,0,,,,0,1,0,0,1.548950281,0.0,0.047,87.073,5.033,22.007,28.286,73830.106,248,2.217046923,12.85298514,10.52946726,0 -389,34,0,9,0,0,240,13,0,0,0,0,0,0,0,0,105,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,193,194,1.63358684,0.0,0.057,86.339,2.555,15.673,18.321,66982.748,210,2.268096479,13.15917099,10.76329416,0 -390,34,0,42,0,0,0,0,0,0,0,13,0,0,0,0,56,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,216,0,,,,0,1,63,78,1.539516723,0.0,0.098,95.953,3.421,15.152,17.86,72840.648,216,2.28083882,13.23966359,10.84396642,0 -391,34,0,29,0,0,0,0,0,23,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,224,0,,,,0,1,142,142,1.557692151,0.0,0.048,100.783,4.326,15.422,18.489,76334.296,224,2.31439945,13.45226069,11.01843408,0 -392,34,0,7,0,0,0,250,0,7,3,0,0,0,128,0,329,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,206,0,,,,0,1,1,1,1.817334191,0.0,0.01,94.033,1.053,14.63,16.73,70888.154,206,2.235538554,12.975504,10.5982846,0 -393,34,0,0,0,0,0,46,0,2,0,0,0,11,0,0,42,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.682,,201,0,,,,0,1,0,0,1.540868004,0.096,0.139,84.421,1.078,17.486,20.624,67228.93,201,2.253938913,13.05383254,10.6518193,0 -394,34,0,0,8,0,0,117,0,6,0,0,0,0,35,0,138,0,0,PORTLAND,PORTLAND,160,2.4,0.0,0.0,,198,0,,,,0,1,66,82,1.719680689,0.045,0.029,64.876,0.647,16.517,19.35,53904.6,198,2.217318835,12.8418697,10.46993329,0 -395,34,0,19,0,0,16,26,0,18,5,10,0,11,18,0,188,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,205,256,1.551967887,0.048,0.097,88.71,2.66,16.767,20.083,69627.65,210,2.274339663,13.19607319,10.80974158,0 -396,34,0,2,0,0,25,15,0,0,0,0,12,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,218,0,,,,0,1,19,19,1.550907248,0.048,0.048,94.832,4.728,17.173,20.838,74028.906,218,2.291708902,13.29746255,10.88699569,0 -397,34,0,0,0,4,57,184,0,14,0,0,0,0,0,0,212,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.227,,187,0,,,,0,1,0,0,1.773925784,0.045,0.029,64.876,0.647,16.517,19.35,53904.6,187,2.142981641,12.41345703,10.11916497,0 -398,34,0,19,0,0,0,0,0,1,0,0,0,0,9,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,214,0,,,,0,1,0,0,1.552005319,0.048,0.048,88.69,2.524,17.927,21.836,70736.987,214,2.216552411,12.83658927,10.50613664,0 -399,34,0,24,0,0,0,51,0,52,0,0,0,0,0,0,200,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.0,,202,0,,,,0,1,93,113,1.550443152,0.096,0.097,82.659,1.178,17.996,21.616,66736.267,202,2.1967618,12.73324839,10.41293482,0 -400,34,0,0,70,0,0,45,0,1,0,32,0,0,0,1,170,0,0,PORTLAND,PORTLAND,0,2.4,15.0,9.773,,196,0,,,,0,1,16,16,1.546778122,0.033,0.0,52.975,0.638,17.282,20.237,46855.778,196,2.170081187,12.58388741,10.25716408,0 -401,34,0,0,0,0,0,1,0,0,0,0,0,0,296,0,284,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,185,0,,,,0,1,0,0,1.433985344,0.0,0.033,43.948,0.64,16.849,19.445,40571.293,185,2.101422833,12.15025631,9.90443106,0 +376,32,0,40,0,0,10,17,0,4,25,0,0,0,0,0,122,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,17,25,1.553398328,0.05,0.097,83.883,5.402,23.174,30.297,73075.271,261,2.277670986,13.20590759,10.83208787,0 +377,32,0,0,0,0,0,70,0,75,10,1,0,0,0,0,82,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,285,0,,,,0,1,0,0,1.545338141,0.049,0.176,67.453,4.938,23.105,30.362,62601.607,285,2.283871149,13.21929033,10.84128055,0 +378,32,0,57,0,0,20,37,0,0,13,3,0,13,0,0,132,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,2,3,1.559418077,0.05,0.225,75.566,6.056,26.929,35.657,71182.725,295,2.282198181,13.15776715,10.8291717,0 +379,33,0,26,0,0,0,66,0,0,0,20,4,0,0,0,247,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,257,0,,,,0,1,0,0,1.566117769,0.0,0.024,107.662,5.357,17.784,21.772,82837.654,257,2.362016353,13.70625794,11.27343462,0 +380,33,0,12,0,0,4,13,0,6,4,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,111,114,1.524361049,0.0,0.046,121.131,6.207,17.745,21.826,91492.416,274,2.370401532,13.75001297,11.31911009,0 +381,33,0,59,0,0,65,1,0,0,0,0,0,0,0,0,226,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,270,0,,,,0,1,228,229,1.557122682,0.0,0.0,98.839,4.84,20.214,25.285,79439.326,270,2.367106534,13.71413998,11.28404244,0 +382,33,0,11,0,0,204,176,0,0,0,38,0,0,0,0,373,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.95,,248,0,,,,0,1,0,0,1.549617566,0.0,0.0,98.839,4.84,20.214,25.285,79439.326,248,2.360775467,13.68907595,11.2378975,0 +383,33,0,0,0,0,87,96,0,0,2,0,0,0,0,11,236,0,0,PORTLAND,PORTLAND,0,2.4,13.0,9.773,,242,0,,,,0,1,192,196,1.548698687,0.0,0.027,96.549,2.342,21.817,26.61,78822.051,242,2.281478066,13.21390671,10.84265598,0 +384,33,0,0,0,0,0,93,0,0,5,0,0,0,0,0,161,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,263,0,,,,0,1,1,1,1.558127366,0.0,0.048,101.162,5.093,21.288,26.636,81790.884,263,2.307767556,13.35940405,10.97612609,0 +385,33,0,0,0,0,32,32,0,14,0,0,0,0,0,0,129,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,234,0,,,,0,1,78,79,1.551986772,0.0,0.027,96.549,2.342,21.817,26.61,78822.051,234,2.257162988,13.08911365,10.71735921,0 +386,33,0,0,0,0,13,4,0,0,11,0,56,0,0,0,55,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,50,50,1.551930911,0.0,0.048,97.092,5.688,20.899,26.61,79168.925,253,2.287690982,13.27144393,10.88573706,0 +387,33,0,0,0,0,4,3,0,3,0,0,0,0,0,39,63,0,0,PORTLAND,PORTLAND,0,2.4,11.32,11.176,,231,0,,,,0,1,0,0,1.526101142,0.0,0.028,86.199,3.714,26.45,34.114,77000.711,231,2.184796477,12.66161857,10.36155557,0 +388,33,0,0,0,0,0,11,0,9,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,248,0,,,,0,1,0,0,1.548950281,0.0,0.047,87.073,5.033,22.007,28.286,73830.106,248,2.217046923,12.85298514,10.52946726,0 +389,34,0,17,0,0,235,7,0,0,0,0,0,0,0,0,165,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,193,194,1.63358684,0.0,0.057,86.339,2.555,15.673,18.321,66982.748,210,2.268096479,13.15917099,10.76329416,0 +390,34,0,49,0,0,0,0,0,0,0,17,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,216,0,,,,0,1,63,78,1.539516723,0.0,0.098,95.953,3.421,15.152,17.86,72840.648,216,2.28083882,13.23966359,10.84396642,0 +391,34,0,43,0,0,0,0,0,46,0,0,0,0,0,0,91,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,224,0,,,,0,1,142,142,1.557692151,0.0,0.048,100.783,4.326,15.422,18.489,76334.296,224,2.31439945,13.45226069,11.01843408,0 +392,34,0,9,0,0,0,319,0,4,3,0,0,0,172,0,466,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,206,0,,,,0,1,1,1,1.817334191,0.0,0.01,94.033,1.053,14.63,16.73,70888.154,206,2.235538554,12.975504,10.5982846,0 +393,34,0,0,0,0,0,67,0,1,0,0,0,8,0,0,101,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.682,,201,0,,,,0,1,0,0,1.540868004,0.096,0.139,84.421,1.078,17.486,20.624,67228.93,201,2.253938913,13.05383254,10.6518193,0 +394,34,0,0,11,0,0,117,0,9,0,0,0,0,65,0,187,0,0,PORTLAND,PORTLAND,160,2.4,0.0,0.0,,198,0,,,,0,1,66,82,1.719680689,0.045,0.029,64.876,0.647,16.517,19.35,53904.6,198,2.217318835,12.8418697,10.46993329,0 +395,34,0,37,0,0,11,20,0,15,3,23,0,4,17,0,198,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,205,256,1.551967887,0.048,0.097,88.71,2.66,16.767,20.083,69627.65,210,2.274339663,13.19607319,10.80974158,0 +396,34,0,2,0,0,27,20,0,0,0,0,13,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,218,0,,,,0,1,19,19,1.550907248,0.048,0.048,94.832,4.728,17.173,20.838,74028.906,218,2.291708902,13.29746255,10.88699569,0 +397,34,0,0,0,5,70,167,0,14,0,0,0,0,0,0,351,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.227,,187,0,,,,0,1,0,0,1.773925784,0.045,0.029,64.876,0.647,16.517,19.35,53904.6,187,2.142981641,12.41345703,10.11916497,0 +398,34,0,33,0,0,0,0,0,0,1,0,0,0,8,0,40,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,214,0,,,,0,1,0,0,1.552005319,0.048,0.048,88.69,2.524,17.927,21.836,70736.987,214,2.216552411,12.83658927,10.50613664,0 +399,34,0,58,0,0,0,32,0,61,0,0,0,0,0,0,108,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.0,,202,0,,,,0,1,93,113,1.550443152,0.096,0.097,82.659,1.178,17.996,21.616,66736.267,202,2.1967618,12.73324839,10.41293482,0 +400,34,0,0,59,0,0,50,0,3,0,25,0,0,0,1,61,0,0,PORTLAND,PORTLAND,0,2.4,15.0,9.773,,196,0,,,,0,1,16,16,1.546778122,0.033,0.0,52.975,0.638,17.282,20.237,46855.778,196,2.170081187,12.58388741,10.25716408,0 +401,34,0,0,0,0,0,0,0,0,0,0,0,0,247,0,238,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,185,0,,,,0,1,0,0,1.433985344,0.0,0.033,43.948,0.64,16.849,19.445,40571.293,185,2.101422833,12.15025631,9.90443106,0 402,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,193,2,,,,0,1,0,0,1.537729838,0.0,0.106,72.781,0.946,17.929,21.319,60223.547,193,2.122886307,12.31031122,10.03422355,0 -403,34,0,0,0,0,0,0,0,0,0,0,11,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,208,0,,,,0,1,13,13,1.552026464,0.0,0.096,85.822,1.238,23.081,27.902,72782.898,208,2.154874401,12.491407,10.21234749,0 -404,34,0,0,0,0,33,0,0,0,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,11.812,9.545,,203,0,,,,0,1,0,0,1.53485103,0.048,0.048,74.13,2.486,21.799,27.067,64766.468,203,2.123848681,12.27772731,10.03446436,0 -405,34,0,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,11.726,9.545,,189,0,,,,0,1,23,23,1.563850255,0.05,0.097,85.822,1.238,23.081,27.902,72782.898,189,2.102365424,12.17194188,9.923255889,0 -406,34,0,0,10,341,0,11,0,0,0,0,0,0,0,0,278,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,181,0,,,,0,1,23,23,1.408982858,0.098,0.145,63.469,0.983,24.491,29.126,59260.447,181,2.075943156,11.94896013,9.746987304,0 +403,34,0,0,0,0,0,0,0,0,0,0,8,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,208,0,,,,0,1,13,13,1.552026464,0.0,0.096,85.822,1.238,23.081,27.902,72782.898,208,2.154874401,12.491407,10.21234749,0 +404,34,0,0,0,0,14,0,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,11.812,9.545,,203,0,,,,0,1,0,0,1.53485103,0.048,0.048,74.13,2.486,21.799,27.067,64766.468,203,2.123848681,12.27772731,10.03446436,0 +405,34,0,0,0,0,28,0,0,0,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,11.726,9.545,,189,0,,,,0,1,23,23,1.563850255,0.05,0.097,85.822,1.238,23.081,27.902,72782.898,189,2.102365424,12.17194188,9.923255889,0 +406,34,0,0,16,232,0,6,0,0,0,0,0,0,0,0,327,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,181,0,,,,0,1,23,23,1.408982858,0.098,0.145,63.469,0.983,24.491,29.126,59260.447,181,2.075943156,11.94896013,9.746987304,0 407,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,181,0,,,,0,1,0,0,2.780418164,0.143,0.19,61.92,1.012,22.894,26.528,56606.29,181,2.094854381,12.13049835,9.881492627,0 -408,34,0,27,0,0,0,36,0,6,28,0,7,0,0,0,119,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,242,0,,,,0,1,0,0,1.551196887,0.0,0.0,101.829,5.469,17.432,21.122,78688.764,242,2.350483973,13.64498825,11.20181092,0 +408,34,0,78,0,0,0,62,0,5,32,0,8,0,0,0,158,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,242,0,,,,0,1,0,0,1.551196887,0.0,0.0,101.829,5.469,17.432,21.122,78688.764,242,2.350483973,13.64498825,11.20181092,0 409,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,10.0,9.045,,233,0,,,,0,1,0,0,1.550908269,0.0,0.0,97.573,5.391,17.131,21.051,75919.761,233,2.348295633,13.62080686,11.18081193,0 -410,34,0,0,0,0,0,29,0,0,0,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.455,,229,0,,,,0,1,0,0,1.552734536,0.0,0.0,96.585,4.907,18.344,22.688,76334.623,229,2.238928158,12.97631672,10.61996375,0 +410,34,0,0,0,0,0,30,0,1,0,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.455,,229,0,,,,0,1,0,0,1.552734536,0.0,0.0,96.585,4.907,18.344,22.688,76334.623,229,2.238928158,12.97631672,10.61996375,0 411,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,189,3,,,,0,1,10,10,27.15434894,0.023,0.13,54.325,0.563,12.96,14.543,44076.037,189,2.021809664,11.72551365,9.523948488,0 -412,34,0,27,0,0,0,108,0,8,0,0,0,0,0,0,166,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,225,0,,,,0,1,226,287,1.552713974,0.0,0.0,95.774,2.936,21.319,26.004,77937.372,225,2.221178159,12.88263529,10.52686717,0 -413,34,0,63,0,0,0,54,0,1,4,0,23,0,0,0,134,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,0,,,,0,1,62,72,1.548622184,0.0,0.0,86.454,2.164,23.487,29.519,74222.859,217,2.157430174,12.49105922,10.21902234,0 +412,34,0,9,0,0,0,111,0,8,0,0,0,0,0,0,264,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,225,0,,,,0,1,226,287,1.552713974,0.0,0.0,95.774,2.936,21.319,26.004,77937.372,225,2.221178159,12.88263529,10.52686717,0 +413,34,0,74,0,0,0,51,0,1,4,0,13,0,0,0,133,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,0,,,,0,1,62,72,1.548622184,0.0,0.0,86.454,2.164,23.487,29.519,74222.859,217,2.157430174,12.49105922,10.21902234,0 414,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,124,0,,,,0,7,0,0,0.673537197,0.041,0.887,13.541,0.938,12.323,18.902,20763.533,124,1.843137167,10.7439296,8.614710778,0 -415,35,0,11,0,0,0,38,0,0,7,0,0,8,0,0,32,0,0,PORTLAND,PORTLAND,0,0.0,12.0,7.273,,130,0,,,,0,7,0,0,6.229260071,0.098,0.956,17.103,0.995,12.343,18.763,22954.451,130,1.739925746,10.12604024,8.119475863,0 -416,35,0,20,0,2,39,54,0,10,0,5,0,4,0,0,94,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,74,0,,,,0,7,770,1391,84.7332625,0.0,1.179,11.183,0.213,6.272,10.992,14192.0,74,0.0,0.0,0.0,0 -417,35,0,0,0,0,0,52,5,0,1,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,142,0,,,,0,7,0,0,1.563180506,0.0,0.952,29.362,1.224,12.242,18.503,30634.002,142,1.655650795,9.656978431,7.732476318,0 -418,35,0,0,0,0,0,5,0,0,0,0,10,0,9,0,18,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,137,0,,,,0,7,0,0,1.555403391,0.0,1.0,23.296,1.254,11.538,17.721,26251.237,137,1.707064687,9.971798229,7.998839522,0 +415,35,0,6,0,0,0,40,0,0,3,0,0,8,0,0,65,0,0,PORTLAND,PORTLAND,0,0.0,12.0,7.273,,130,0,,,,0,7,0,0,6.229260071,0.098,0.956,17.103,0.995,12.343,18.763,22954.451,130,1.739925746,10.12604024,8.119475863,0 +416,35,0,19,0,3,26,39,0,6,0,5,0,3,0,0,61,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,74,0,,,,0,7,770,1391,84.7332625,0.0,1.179,11.183,0.213,6.272,10.992,14192.0,74,0.0,0.0,0.0,0 +417,35,0,0,0,0,0,68,3,0,1,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,142,0,,,,0,7,0,0,1.563180506,0.0,0.952,29.362,1.224,12.242,18.503,30634.002,142,1.655650795,9.656978431,7.732476318,0 +418,35,0,0,0,0,0,4,0,0,0,0,14,0,6,0,36,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,137,0,,,,0,7,0,0,1.555403391,0.0,1.0,23.296,1.254,11.538,17.721,26251.237,137,1.707064687,9.971798229,7.998839522,0 419,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,134,0,,,,0,7,0,0,3.037235941,0.047,999999.0,27.139,1.027,9.204,15.696,27414.294,134,0.0,0.0,0.0,0 -420,35,0,53,0,0,0,0,0,0,2,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,135,0,,,,0,7,0,0,3.098568761,0.0,999999.0,34.648,0.976,9.632,15.683,32211.692,135,0.0,0.0,0.0,0 -421,35,0,30,4,0,0,5,0,0,25,0,0,0,0,0,88,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,18,22,18.30047907,0.292,1.244,26.741,0.874,3.484,5.246,20471.783,152,0.0,0.0,0.0,0 -422,35,0,0,19,48,889,800,0,0,0,0,0,0,4,0,2211,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,95,0,,,,0,7,0,0,16.76690674,0.098,999999.0,19.357,0.388,2.76,5.008,15593.826,95,0.0,0.0,0.0,0 -423,35,0,0,0,0,0,50,0,0,1,0,24,0,0,0,88,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,120,0,,,,0,7,0,0,3.01143836,0.0,999999.0,16.815,0.378,6.078,11.044,17829.621,120,0.0,0.0,0.0,0 -424,35,0,0,1,0,0,0,2,32,0,1,4,0,0,0,42,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,132,0,,,,0,7,0,0,2.999984638,0.096,999999.0,17.119,0.444,7.125,12.857,19184.829,132,0.0,0.0,0.0,0 -425,35,0,0,1,0,0,5,0,0,4,0,0,3,0,0,15,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,133,0,,,,0,7,0,0,1.529676333,0.049,1.001,22.769,1.314,9.943,15.393,24423.633,133,1.60527257,9.368149877,7.488988547,0 -426,35,0,0,0,0,0,18,0,0,18,0,5,0,0,0,46,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,141,0,,,,0,7,0,0,3.08484762,0.197,1.149,25.033,1.2,4.104,5.506,19545.372,141,0.0,0.0,0.0,0 -427,35,0,0,0,33,0,0,0,0,0,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,138,0,,,,0,7,1,1,3.137201768,0.292,1.244,26.741,0.874,3.484,5.246,20471.783,138,0.0,0.0,0.0,0 -428,35,0,22,0,0,0,264,0,0,0,0,0,0,0,0,264,0,0,PORTLAND,PORTLAND,0,0.0,10.0,8.14,,114,0,,,,0,7,0,0,2.690198778,0.0,1.025,13.734,0.671,8.944,14.409,18011.711,114,1.68353474,9.805681981,7.855411836,0 -429,35,0,0,0,0,0,2,0,0,0,0,14,168,0,0,176,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,129,0,,,,0,7,0,0,3.143757374,0.195,999999.0,36.083,1.443,7.028,11.0,30132.673,129,0.0,0.0,0.0,0 -430,35,0,2,0,0,0,74,0,0,2,0,5,0,0,0,86,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,126,0,,,,0,7,2,2,3.1070393,0.049,999999.0,27.105,0.998,8.519,14.445,26591.993,126,0.0,0.0,0.0,0 -431,35,0,0,0,0,0,0,0,0,0,0,0,17,0,0,14,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,118,0,,,,0,7,0,0,1.59605359,0.196,999999.0,34.488,1.292,6.511,10.227,28618.181,118,0.0,0.0,0.0,0 -432,35,0,0,0,0,0,89,0,0,0,0,0,0,0,182,312,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,116,0,,,,0,7,0,0,3.099926063,0.215,999999.0,18.461,0.482,5.199,9.102,17640.449,116,0.0,0.0,0.0,0 -433,35,0,0,1194,0,0,5,0,0,0,0,1,0,0,0,1347,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,122,0,,,,0,7,0,0,6.219562849,0.213,999999.0,18.461,0.482,5.199,9.102,17640.449,122,0.0,0.0,0.0,0 -434,35,0,32,0,0,0,0,0,0,0,5,1,5,0,0,39,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,123,0,,,,0,7,7,10,4.619843066,0.099,999999.0,31.539,1.277,7.979,12.776,28361.968,123,0.0,0.0,0.0,0 -435,35,0,8,71,0,0,12,0,3,0,0,0,0,0,0,88,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,0,0,3.096055194,0.193,999999.0,32.455,1.143,7.453,12.248,28610.151,114,0.0,0.0,0.0,0 -436,35,0,0,64,0,0,6,0,0,0,0,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,0,0,2.151495012,0.215,999999.0,18.461,0.482,5.199,9.102,17640.449,103,0.0,0.0,0.0,0 -437,35,0,0,0,0,0,0,0,0,0,0,8,4,0,0,17,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,1,1,2.148659119,0.246,999999.0,21.253,0.42,4.815,8.469,19022.293,103,0.0,0.0,0.0,0 -438,35,0,0,11,0,0,0,0,0,3,0,6,19,0,0,55,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,1,1,2.11414727,0.146,999999.0,23.316,0.422,6.511,11.667,22388.996,103,0.0,0.0,0.0,0 -439,35,0,0,0,0,0,25,0,0,19,0,14,5,0,0,116,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,104,0,,,,0,7,14,14,2.184874103,0.193,999999.0,32.455,1.143,7.453,12.248,28610.151,104,0.0,0.0,0.0,0 -440,35,0,0,62,0,0,140,0,10,3,0,16,2,0,30,192,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,122,0,,,,0,7,0,0,17.249522,0.244,1.196,24.752,0.822,2.767,3.839,18297.824,122,0.0,0.0,0.0,0 -441,35,0,0,0,0,0,0,0,0,0,0,26,0,0,0,27,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,0,0,10.76101007,0.197,999999.0,16.268,0.406,3.954,7.296,15081.322,114,0.0,0.0,0.0,0 -442,35,0,0,0,0,8,0,0,0,0,0,296,18,0,0,189,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,117,0,,,,0,7,0,0,24.82238505,0.39,999999.0,22.755,0.344,1.669,2.995,16480.027,117,0.0,0.0,0.0,0 -443,35,0,0,0,0,0,16,0,4,0,0,10,0,0,0,55,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,93,0,,,,0,7,0,0,1.786862153,0.214,999999.0,32.699,0.322,4.005,6.965,25384.803,93,0.0,0.0,0.0,0 -444,35,0,0,17,0,0,21,0,4,0,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,92,0,,,,0,7,0,0,1.905108717,0.314,999999.0,32.489,0.326,2.803,4.916,23938.803,92,0.0,0.0,0.0,0 -445,35,0,0,0,0,0,3,0,0,0,0,95,0,0,23,128,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,95,0,,,,0,7,0,0,8.664070462,0.245,999999.0,18.911,0.248,4.577,8.169,17330.85,95,0.0,0.0,0.0,0 -446,35,0,0,109,0,0,22,0,11,0,0,0,39,6,942,1051,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,0,0,11.54215129,0.0,1.179,11.183,0.213,6.272,10.992,14192.0,103,0.0,0.0,0.0,0 -447,35,0,0,0,0,0,23,0,0,0,0,0,4,0,0,24,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,88,0,,,,0,7,0,0,4.160415386,0.148,999999.0,18.49,0.359,4.114,7.289,16498.271,88,0.0,0.0,0.0,0 +420,35,0,42,0,0,0,0,0,0,2,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,135,0,,,,0,7,0,0,3.098568761,0.0,999999.0,34.648,0.976,9.632,15.683,32211.692,135,0.0,0.0,0.0,0 +421,35,0,25,2,0,0,5,0,0,41,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,18,22,18.30047907,0.292,1.244,26.741,0.874,3.484,5.246,20471.783,152,0.0,0.0,0.0,0 +422,35,0,0,33,24,1158,610,0,0,0,0,0,0,6,0,2162,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,95,0,,,,0,7,0,0,16.76690674,0.098,999999.0,19.357,0.388,2.76,5.008,15593.826,95,0.0,0.0,0.0,0 +423,35,0,0,0,0,0,46,0,0,0,0,20,0,0,0,79,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,120,0,,,,0,7,0,0,3.01143836,0.0,999999.0,16.815,0.378,6.078,11.044,17829.621,120,0.0,0.0,0.0,0 +424,35,0,0,1,0,0,1,1,13,0,2,5,0,0,0,46,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,132,0,,,,0,7,0,0,2.999984638,0.096,999999.0,17.119,0.444,7.125,12.857,19184.829,132,0.0,0.0,0.0,0 +425,35,0,0,1,0,0,6,0,0,5,0,0,2,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,133,0,,,,0,7,0,0,1.529676333,0.049,1.001,22.769,1.314,9.943,15.393,24423.633,133,1.60527257,9.368149877,7.488988547,0 +426,35,0,0,0,0,0,11,0,0,14,0,11,0,0,1,50,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,141,0,,,,0,7,0,0,3.08484762,0.197,1.149,25.033,1.2,4.104,5.506,19545.372,141,0.0,0.0,0.0,0 +427,35,0,0,0,49,0,0,0,0,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,138,0,,,,0,7,1,1,3.137201768,0.292,1.244,26.741,0.874,3.484,5.246,20471.783,138,0.0,0.0,0.0,0 +428,35,0,22,0,0,0,157,0,0,0,0,0,0,0,0,351,0,0,PORTLAND,PORTLAND,0,0.0,10.0,8.14,,114,0,,,,0,7,0,0,2.690198778,0.0,1.025,13.734,0.671,8.944,14.409,18011.711,114,1.68353474,9.805681981,7.855411836,0 +429,35,0,0,0,0,0,2,0,0,0,0,20,106,0,0,119,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,129,0,,,,0,7,0,0,3.143757374,0.195,999999.0,36.083,1.443,7.028,11.0,30132.673,129,0.0,0.0,0.0,0 +430,35,0,2,0,0,0,58,0,0,3,0,6,0,0,0,112,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,126,0,,,,0,7,2,2,3.1070393,0.049,999999.0,27.105,0.998,8.519,14.445,26591.993,126,0.0,0.0,0.0,0 +431,35,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,118,0,,,,0,7,0,0,1.59605359,0.196,999999.0,34.488,1.292,6.511,10.227,28618.181,118,0.0,0.0,0.0,0 +432,35,0,0,0,0,0,69,0,0,0,0,0,0,0,328,362,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,116,0,,,,0,7,0,0,3.099926063,0.215,999999.0,18.461,0.482,5.199,9.102,17640.449,116,0.0,0.0,0.0,0 +433,35,0,0,820,0,0,8,0,0,0,0,2,0,0,0,1236,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,122,0,,,,0,7,0,0,6.219562849,0.213,999999.0,18.461,0.482,5.199,9.102,17640.449,122,0.0,0.0,0.0,0 +434,35,0,25,0,0,0,0,0,0,0,4,1,13,0,0,43,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,123,0,,,,0,7,7,10,4.619843066,0.099,999999.0,31.539,1.277,7.979,12.776,28361.968,123,0.0,0.0,0.0,0 +435,35,0,9,37,0,0,9,0,2,0,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,0,0,3.096055194,0.193,999999.0,32.455,1.143,7.453,12.248,28610.151,114,0.0,0.0,0.0,0 +436,35,0,0,87,0,0,6,0,0,0,0,0,0,0,0,103,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,0,0,2.151495012,0.215,999999.0,18.461,0.482,5.199,9.102,17640.449,103,0.0,0.0,0.0,0 +437,35,0,0,0,0,0,0,0,0,0,0,13,3,0,0,16,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,1,1,2.148659119,0.246,999999.0,21.253,0.42,4.815,8.469,19022.293,103,0.0,0.0,0.0,0 +438,35,0,0,12,0,0,0,0,0,4,0,9,20,0,0,31,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,1,1,2.11414727,0.146,999999.0,23.316,0.422,6.511,11.667,22388.996,103,0.0,0.0,0.0,0 +439,35,0,0,0,0,0,33,0,0,8,0,15,11,0,0,104,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,104,0,,,,0,7,14,14,2.184874103,0.193,999999.0,32.455,1.143,7.453,12.248,28610.151,104,0.0,0.0,0.0,0 +440,35,0,0,41,0,0,106,0,8,5,0,19,1,0,28,279,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,122,0,,,,0,7,0,0,17.249522,0.244,1.196,24.752,0.822,2.767,3.839,18297.824,122,0.0,0.0,0.0,0 +441,35,0,0,0,0,0,0,0,0,0,0,25,0,0,0,26,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,0,0,10.76101007,0.197,999999.0,16.268,0.406,3.954,7.296,15081.322,114,0.0,0.0,0.0,0 +442,35,0,0,0,0,14,0,0,0,0,0,296,21,0,0,232,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,117,0,,,,0,7,0,0,24.82238505,0.39,999999.0,22.755,0.344,1.669,2.995,16480.027,117,0.0,0.0,0.0,0 +443,35,0,0,0,0,0,34,0,5,0,0,14,0,0,0,25,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,93,0,,,,0,7,0,0,1.786862153,0.214,999999.0,32.699,0.322,4.005,6.965,25384.803,93,0.0,0.0,0.0,0 +444,35,0,0,12,0,0,8,0,2,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,92,0,,,,0,7,0,0,1.905108717,0.314,999999.0,32.489,0.326,2.803,4.916,23938.803,92,0.0,0.0,0.0,0 +445,35,0,0,0,0,0,3,0,0,0,0,109,0,0,24,85,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,95,0,,,,0,7,0,0,8.664070462,0.245,999999.0,18.911,0.248,4.577,8.169,17330.85,95,0.0,0.0,0.0,0 +446,35,0,0,79,0,0,9,0,11,0,0,0,56,7,727,940,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,0,0,11.54215129,0.0,1.179,11.183,0.213,6.272,10.992,14192.0,103,0.0,0.0,0.0,0 +447,35,0,0,0,0,0,19,0,0,0,0,0,4,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,88,0,,,,0,7,0,0,4.160415386,0.148,999999.0,18.49,0.359,4.114,7.289,16498.271,88,0.0,0.0,0.0,0 448,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,77,0,,,,0,7,0,0,4.004814549,0.205,999999.0,17.974,0.153,4.068,7.26,16149.926,77,0.0,0.0,0.0,0 -449,36,0,0,0,0,0,0,0,0,10,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,132,0,,,,0,7,0,0,0.590591691,0.061,0.907,14.729,1.273,14.175,21.358,23096.121,132,1.867638964,10.88021143,8.728336615,0 +449,36,0,0,0,0,0,0,0,0,16,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,132,0,,,,0,7,0,0,0.590591691,0.061,0.907,14.729,1.273,14.175,21.358,23096.121,132,1.867638964,10.88021143,8.728336615,0 450,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,222,0,,,,0,7,0,0,0.529096547,0.0,0.697,40.121,3.127,26.118,36.982,49346.174,222,2.193230143,12.59615666,10.15965223,0 -451,36,0,28,0,0,0,7,0,0,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,224,0,,,,0,7,81,104,1.529271597,0.0,0.649,39.084,2.306,26.997,38.033,49354.63,224,2.153560439,12.37755268,9.97669979,0 -452,36,0,0,0,0,0,1,0,154,0,0,0,0,0,0,207,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,231,0,,,,0,7,7,9,1.552134458,0.0,0.611,33.931,2.258,27.766,39.081,46727.682,231,2.121392985,12.35259943,9.927492096,0 -453,36,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,228,0,,,,0,7,67,82,1.552946504,0.0,0.562,36.976,1.968,28.058,39.339,48841.652,228,2.105656052,12.2154018,9.813579446,0 -454,36,0,0,7,0,0,0,0,0,0,3,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,213,0,,,,0,7,2,3,1.535165277,0.048,0.698,33.596,2.899,25.949,36.734,45011.652,213,2.036059686,11.70059509,9.423899816,0 +451,36,0,12,0,0,0,7,0,0,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,224,0,,,,0,7,81,104,1.529271597,0.0,0.649,39.084,2.306,26.997,38.033,49354.63,224,2.153560439,12.37755268,9.97669979,0 +452,36,0,0,0,0,0,2,0,77,0,0,0,0,0,0,213,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,231,0,,,,0,7,7,9,1.552134458,0.0,0.611,33.931,2.258,27.766,39.081,46727.682,231,2.121392985,12.35259943,9.927492096,0 +453,36,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,228,0,,,,0,7,67,82,1.552946504,0.0,0.562,36.976,1.968,28.058,39.339,48841.652,228,2.105656052,12.2154018,9.813579446,0 +454,36,0,0,7,0,0,0,0,0,0,3,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,213,0,,,,0,7,2,3,1.535165277,0.048,0.698,33.596,2.899,25.949,36.734,45011.652,213,2.036059686,11.70059509,9.423899816,0 455,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,207,0,,,,0,7,0,0,0.553004206,0.048,0.698,34.795,2.588,22.553,31.956,42720.501,207,2.07724752,11.92991571,9.613962648,0 -456,36,0,0,0,0,0,18,0,2,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,221,0,,,,0,7,32,39,1.54999867,0.049,0.66,36.638,1.926,26.706,37.467,47427.164,221,2.07750376,12.09402842,9.709844288,0 -457,36,0,0,0,0,0,0,0,0,27,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,4,5,1.552626416,0.049,0.611,37.62,1.981,26.94,37.826,48285.43,217,2.045685155,11.85252206,9.514969158,0 -458,36,0,0,3,0,0,38,0,0,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,200,0,,,,0,7,0,0,1.53571859,0.0,0.746,32.585,2.228,21.919,30.931,40650.455,200,2.003553962,11.49193612,9.25250963,0 +456,36,0,0,0,0,0,10,0,2,0,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,221,0,,,,0,7,32,39,1.54999867,0.049,0.66,36.638,1.926,26.706,37.467,47427.164,221,2.07750376,12.09402842,9.709844288,0 +457,36,0,0,0,0,0,0,0,0,32,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,4,5,1.552626416,0.049,0.611,37.62,1.981,26.94,37.826,48285.43,217,2.045685155,11.85252206,9.514969158,0 +458,36,0,0,2,0,0,47,0,0,0,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,200,0,,,,0,7,0,0,1.53571859,0.0,0.746,32.585,2.228,21.919,30.931,40650.455,200,2.003553962,11.49193612,9.25250963,0 459,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,194,0,,,,0,7,0,0,0.595586868,0.0,0.715,29.817,2.565,22.915,32.511,39890.081,194,2.032551093,11.65119098,9.385252366,0 -460,36,0,10,0,0,2,8,0,0,0,55,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,99,136,1.551765153,0.0,0.708,37.306,1.92,25.897,36.65,47331.913,208,1.974342034,11.48840854,9.23416752,0 -461,36,0,0,0,0,0,5,0,2,22,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,0,0,1.55260389,0.0,0.66,39.142,2.358,25.526,35.987,48082.619,210,2.010938712,11.69980884,9.38219927,0 -462,36,0,0,11,0,0,14,0,0,0,1,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,197,0,,,,0,7,89,123,1.554941091,0.048,0.756,34.25,2.027,21.445,30.331,41331.519,197,1.935695101,11.25948464,9.046516028,0 -463,36,0,18,0,0,0,7,0,0,15,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,194,0,,,,0,7,0,0,1.537503717,0.0,0.708,39.22,2.308,23.249,32.933,46177.669,194,1.907835213,11.08344996,8.887819507,0 -464,36,0,0,0,0,0,2,0,0,68,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,0,0,1.538019347,0.097,0.843,29.849,2.189,21.002,30.032,38324.135,186,1.958877222,11.4043364,9.165776137,0 +460,36,0,5,0,0,2,7,0,0,0,45,0,0,1,0,69,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,99,136,1.551765153,0.0,0.708,37.306,1.92,25.897,36.65,47331.913,208,1.974342034,11.48840854,9.23416752,0 +461,36,0,0,0,0,0,6,0,4,20,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,0,0,1.55260389,0.0,0.66,39.142,2.358,25.526,35.987,48082.619,210,2.010938712,11.69980884,9.38219927,0 +462,36,0,0,10,0,0,13,0,0,0,1,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,197,0,,,,0,7,89,123,1.554941091,0.048,0.756,34.25,2.027,21.445,30.331,41331.519,197,1.935695101,11.25948464,9.046516028,0 +463,36,0,29,0,0,0,6,0,0,19,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,194,0,,,,0,7,0,0,1.537503717,0.0,0.708,39.22,2.308,23.249,32.933,46177.669,194,1.907835213,11.08344996,8.887819507,0 +464,36,0,0,0,0,0,3,0,0,32,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,0,0,1.538019347,0.097,0.843,29.849,2.189,21.002,30.032,38324.135,186,1.958877222,11.4043364,9.165776137,0 465,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,180,0,,,,0,7,0,0,0.591118175,0.049,0.759,28.29,2.473,21.453,30.679,37739.995,180,1.999529124,11.47575086,9.23347961,0 466,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,168,0,,,,0,7,0,0,0.570867957,0.097,0.804,28.525,1.785,21.77,31.336,38310.59,168,1.942649241,11.32605636,9.100288145,0 -467,36,0,0,0,0,0,0,0,0,0,18,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,175,0,,,,0,7,0,0,1.512251092,0.097,0.843,29.849,2.189,21.002,30.032,38324.135,175,1.918977378,11.1790158,8.980316463,0 -468,36,0,0,0,0,0,9,0,31,0,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,185,0,,,,0,7,0,0,1.563731214,0.05,0.805,32.377,2.432,21.593,30.622,40319.501,185,1.896817624,11.02615561,8.859196642,0 -469,36,0,0,0,0,0,0,0,0,0,0,41,0,0,0,55,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,0,0,1.549185686,0.049,0.757,40.195,2.411,24.673,35.01,48131.429,186,1.858207572,10.79789339,8.673296401,0 -470,36,0,0,13,0,0,306,0,0,0,0,0,2,0,0,243,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,44,53,3.092150553,0.096,0.853,40.659,1.486,22.113,32.128,46583.696,186,1.755681041,10.18788274,8.167324577,0 -471,36,0,2,0,0,8,8,0,16,0,3,0,0,4,0,33,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,171,0,,,,0,7,0,0,1.537575695,0.0,0.855,32.334,2.466,21.571,30.746,40371.675,171,1.843536631,10.7199659,8.608063093,0 -472,36,0,0,0,0,166,5,0,143,0,0,0,1,0,0,277,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,74,91,1.546381913,0.0,0.806,31.549,1.995,21.174,30.254,39554.05,173,1.820102943,10.5734754,8.484389928,0 -473,36,0,23,17,0,0,76,0,0,0,0,0,3,0,0,111,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,178,0,,,,0,7,58,68,3.118224548,0.0,0.952,44.056,1.665,20.215,29.382,47000.263,178,1.696544353,9.838296083,7.872783139,0 -474,36,0,0,0,0,2,20,0,0,3,1,2,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,189,0,,,,0,7,21,21,6.176870155,0.046,0.94,41.145,1.641,19.023,27.734,44082.703,189,1.490361652,8.636143296,6.905363999,0 -475,36,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,43,43,1.588075241,0.047,0.893,27.113,1.902,17.109,25.325,33560.217,162,1.879780581,10.9371663,8.78700671,0 +467,36,0,0,0,0,0,0,0,0,0,19,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,175,0,,,,0,7,0,0,1.512251092,0.097,0.843,29.849,2.189,21.002,30.032,38324.135,175,1.918977378,11.1790158,8.980316463,0 +468,36,0,0,0,0,0,9,0,24,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,185,0,,,,0,7,0,0,1.563731214,0.05,0.805,32.377,2.432,21.593,30.622,40319.501,185,1.896817624,11.02615561,8.859196642,0 +469,36,0,0,0,0,0,0,0,0,0,0,29,0,0,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,0,0,1.549185686,0.049,0.757,40.195,2.411,24.673,35.01,48131.429,186,1.858207572,10.79789339,8.673296401,0 +470,36,0,0,8,0,1,195,0,0,0,0,0,2,0,0,214,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,44,53,3.092150553,0.096,0.853,40.659,1.486,22.113,32.128,46583.696,186,1.755681041,10.18788274,8.167324577,0 +471,36,0,1,0,0,5,10,0,13,0,4,0,0,4,0,27,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,171,0,,,,0,7,0,0,1.537575695,0.0,0.855,32.334,2.466,21.571,30.746,40371.675,171,1.843536631,10.7199659,8.608063093,0 +472,36,0,0,0,0,168,3,0,56,0,0,0,0,0,0,202,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,74,91,1.546381913,0.0,0.806,31.549,1.995,21.174,30.254,39554.05,173,1.820102943,10.5734754,8.484389928,0 +473,36,0,26,7,0,0,64,0,0,0,0,0,4,0,0,132,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,178,0,,,,0,7,58,68,3.118224548,0.0,0.952,44.056,1.665,20.215,29.382,47000.263,178,1.696544353,9.838296083,7.872783139,0 +474,36,0,0,0,0,1,18,0,0,5,1,1,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,189,0,,,,0,7,21,21,6.176870155,0.046,0.94,41.145,1.641,19.023,27.734,44082.703,189,1.490361652,8.636143296,6.905363999,0 +475,36,0,0,0,0,0,6,0,0,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,43,43,1.588075241,0.047,0.893,27.113,1.902,17.109,25.325,33560.217,162,1.879780581,10.9371663,8.78700671,0 476,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,155,0,,,,0,7,0,0,0.672356391,0.1,0.853,31.491,2.213,20.794,29.898,39289.139,155,1.924739792,11.20683764,9.00594333,0 477,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,0,0,2.321788929,0.098,0.903,21.992,1.948,16.569,24.728,29900.793,152,1.854478448,10.79068287,8.66338964,0 -478,36,0,0,0,0,3,10,0,1,1,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,2.0,10.0,8.14,,177,0,,,,0,7,0,0,3.102468098,0.0,0.991,41.808,1.687,17.108,25.194,42881.149,177,1.515572226,8.778934537,7.010137039,0 -479,36,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,168,0,,,,0,7,14,18,3.151156032,0.046,0.998,35.794,1.737,16.808,24.316,38470.319,168,1.65721358,9.607258603,7.704876892,0 -480,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,163,0,,,,0,7,0,0,1.625373028,0.05,0.904,29.457,1.176,13.978,21.07,32337.307,163,1.782484519,10.3908155,8.342334234,0 +478,36,0,0,1,0,3,10,0,1,1,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.0,10.0,8.14,,177,0,,,,0,7,0,0,3.102468098,0.0,0.991,41.808,1.687,17.108,25.194,42881.149,177,1.515572226,8.778934537,7.010137039,0 +479,36,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,168,0,,,,0,7,14,18,3.151156032,0.046,0.998,35.794,1.737,16.808,24.316,38470.319,168,1.65721358,9.607258603,7.704876892,0 +480,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,163,0,,,,0,7,0,0,1.625373028,0.05,0.904,29.457,1.176,13.978,21.07,32337.307,163,1.782484519,10.3908155,8.342334234,0 481,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,159,0,,,,0,7,0,0,1.955648008,0.048,0.95,28.579,1.184,14.661,22.059,32408.319,159,1.807384776,10.50502793,8.430326695,0 482,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,161,0,,,,0,7,0,0,2.809486531,0.046,0.998,35.794,1.737,16.808,24.316,38470.319,161,1.579597987,9.198661135,7.369481384,0 483,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,149,0,,,,0,7,0,0,1.076678029,0.0,0.952,29.362,1.224,12.242,18.503,30634.002,149,1.718370144,10.02303294,8.039532124,0 484,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,151,0,,,,0,7,0,0,1.748793378,0.048,0.95,28.579,1.184,14.661,22.059,32408.319,151,1.755809165,10.21032459,8.184754596,0 -485,36,0,0,0,0,0,1,0,0,2,0,0,7,0,0,19,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,145,0,,,,0,7,12,12,1.597020764,0.049,1.005,21.154,1.138,13.174,20.116,26413.149,145,1.818653041,10.58227363,8.486561012,0 -486,36,0,0,0,0,0,0,0,0,0,0,0,0,85,0,89,206,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,142,0,,,,0,7,0,0,1.715411338,0.145,0.95,19.743,1.959,16.325,24.408,28256.804,142,1.816160214,10.57725303,8.486474298,0 -487,36,0,0,0,0,5,104,0,0,0,0,0,11,0,465,379,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,170,0,,,,0,7,0,0,2.962089683,0.097,1.088,43.17,1.761,13.327,19.519,40120.624,170,1.42075514,8.226538643,6.585591262,0 -488,37,0,24,0,0,10,53,0,18,1,37,0,0,0,0,160,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,242,0,,,,0,7,14,15,3.101617898,0.0,0.66,41.724,3.187,23.808,32.509,47509.474,242,1.960010416,11.36533579,9.128581702,0 -489,37,0,0,0,0,75,0,0,0,0,0,0,0,0,0,67,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,249,0,,,,0,7,0,0,1.555829965,0.097,0.514,34.435,2.602,28.269,39.096,47060.081,249,2.134045534,12.37541134,9.948211822,0 -490,37,0,2,0,0,0,2,0,2,0,0,0,1,0,0,7,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,278,0,,,,0,7,12,13,1.550859982,0.048,0.316,52.587,5.643,26.897,36.989,57328.865,278,2.137822335,12.39087016,10.08418391,0 -491,37,0,28,0,0,0,5,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,270,0,,,,0,7,5,5,1.552760582,0.0,0.268,45.852,4.912,28.359,39.589,54682.039,270,2.071659867,12.02146836,9.785801589,0 -492,37,0,0,0,0,14,0,0,0,0,0,0,0,12,0,33,134,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,261,0,,,,0,7,28,35,3.103974235,0.096,0.392,39.355,3.261,26.922,37.732,49335.711,261,2.043708856,11.42991705,9.292736455,0 -493,37,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,275,0,,,,0,7,34,44,1.551936635,0.0,0.366,44.473,3.98,26.271,36.312,51702.72,275,2.230021121,12.92416109,10.51477257,0 -494,37,0,0,0,0,0,5,0,0,2,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,265,0,,,,0,7,101,129,1.552740017,0.0,0.318,39.279,5.146,27.661,38.437,49738.373,265,2.108266337,12.23269865,9.910962711,0 +485,36,0,0,0,0,0,2,0,0,4,0,0,4,0,0,9,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,145,0,,,,0,7,12,12,1.597020764,0.049,1.005,21.154,1.138,13.174,20.116,26413.149,145,1.818653041,10.58227363,8.486561012,0 +486,36,0,0,0,0,0,0,0,0,0,0,0,0,58,0,49,206,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,142,0,,,,0,7,0,0,1.715411338,0.145,0.95,19.743,1.959,16.325,24.408,28256.804,142,1.816160214,10.57725303,8.486474298,0 +487,36,0,0,0,0,4,228,0,0,0,0,0,25,0,324,706,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,170,0,,,,0,7,0,0,2.962089683,0.097,1.088,43.17,1.761,13.327,19.519,40120.624,170,1.42075514,8.226538643,6.585591262,0 +488,37,0,30,0,0,4,62,0,25,1,28,0,0,0,0,106,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,242,0,,,,0,7,14,15,3.101617898,0.0,0.66,41.724,3.187,23.808,32.509,47509.474,242,1.960010416,11.36533579,9.128581702,0 +489,37,0,0,0,0,57,0,0,0,0,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,249,0,,,,0,7,0,0,1.555829965,0.097,0.514,34.435,2.602,28.269,39.096,47060.081,249,2.134045534,12.37541134,9.948211822,0 +490,37,0,3,0,0,1,1,0,1,0,0,0,2,0,0,6,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,278,0,,,,0,7,12,13,1.550859982,0.048,0.316,52.587,5.643,26.897,36.989,57328.865,278,2.137822335,12.39087016,10.08418391,0 +491,37,0,47,0,0,0,5,0,0,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,270,0,,,,0,7,5,5,1.552760582,0.0,0.268,45.852,4.912,28.359,39.589,54682.039,270,2.071659867,12.02146836,9.785801589,0 +492,37,0,0,0,0,13,0,0,0,0,0,0,0,18,0,35,134,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,261,0,,,,0,7,28,35,3.103974235,0.096,0.392,39.355,3.261,26.922,37.732,49335.711,261,2.043708856,11.42991705,9.292736455,0 +493,37,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,275,0,,,,0,7,34,44,1.551936635,0.0,0.366,44.473,3.98,26.271,36.312,51702.72,275,2.230021121,12.92416109,10.51477257,0 +494,37,0,0,0,0,0,6,0,0,3,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,265,0,,,,0,7,101,129,1.552740017,0.0,0.318,39.279,5.146,27.661,38.437,49738.373,265,2.108266337,12.23269865,9.910962711,0 495,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,261,3,,,,0,7,6,6,3.103854442,0.097,0.466,33.926,3.832,29.478,41.4,48208.688,261,2.05363615,11.4873109,9.298117045,0 -496,37,0,0,0,0,27,0,0,8,0,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,262,0,,,,0,7,38,41,1.551604911,0.0,0.367,42.623,3.976,26.629,36.973,50941.847,262,2.100608134,12.14641418,9.845749368,0 -497,37,0,0,0,0,0,14,0,0,0,0,0,2,0,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,255,0,,,,0,7,141,177,3.103896874,0.096,0.514,35.088,4.296,26.171,36.282,45676.406,255,2.05469322,11.50029091,9.309514027,0 -498,37,0,0,26,0,0,37,0,0,0,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,260,0,,,,0,7,38,50,1.552646182,0.0,0.415,41.232,3.643,27.663,38.148,50803.416,260,2.074075982,12.01573552,9.682708885,0 -499,37,0,0,0,0,0,4,0,1,0,0,0,1,0,0,8,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,253,0,,,,0,7,259,344,3.101634452,0.096,0.514,35.088,4.296,26.171,36.282,45676.406,253,2.029423932,11.35388348,9.184497788,0 -500,37,0,0,0,0,0,10,0,7,0,0,1,1,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,256,0,,,,0,7,45,59,1.54183031,0.049,0.464,41.012,3.123,27.537,37.979,50553.78,256,2.144853023,12.42201096,10.00791389,0 -501,37,0,0,0,0,14,13,0,0,0,0,1,0,1,0,42,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,253,0,,,,0,7,97,121,3.103879115,0.098,0.563,37.097,3.209,24.853,34.401,45758.601,253,2.00112715,11.58920426,9.328237272,0 +496,37,0,0,0,0,36,0,0,3,0,0,0,0,0,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,262,0,,,,0,7,38,41,1.551604911,0.0,0.367,42.623,3.976,26.629,36.973,50941.847,262,2.100608134,12.14641418,9.845749368,0 +497,37,0,0,0,0,0,38,0,0,0,0,0,1,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,255,0,,,,0,7,141,177,3.103896874,0.096,0.514,35.088,4.296,26.171,36.282,45676.406,255,2.05469322,11.50029091,9.309514027,0 +498,37,0,0,54,0,1,17,0,0,0,0,0,0,0,0,69,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,260,0,,,,0,7,38,50,1.552646182,0.0,0.415,41.232,3.643,27.663,38.148,50803.416,260,2.074075982,12.01573552,9.682708885,0 +499,37,0,0,0,0,0,10,0,0,0,0,0,1,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,253,0,,,,0,7,259,344,3.101634452,0.096,0.514,35.088,4.296,26.171,36.282,45676.406,253,2.029423932,11.35388348,9.184497788,0 +500,37,0,0,0,0,0,15,0,11,0,0,1,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,256,0,,,,0,7,45,59,1.54183031,0.049,0.464,41.012,3.123,27.537,37.979,50553.78,256,2.144853023,12.42201096,10.00791389,0 +501,37,0,0,0,0,10,15,0,0,0,0,1,0,1,0,41,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,253,0,,,,0,7,97,121,3.103879115,0.098,0.563,37.097,3.209,24.853,34.401,45758.601,253,2.00112715,11.58920426,9.328237272,0 502,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,243,0,,,,0,7,0,0,0.54259134,0.097,0.648,42.346,2.558,28.131,39.748,52540.083,243,2.201029977,12.63004387,10.20954868,0 -503,38,0,0,0,0,0,12,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,299,0,,,,0,7,51,65,1.661154751,0.0,0.248,70.41,6.364,22.119,30.006,64265.744,299,2.087340092,12.13269115,9.964224715,0 +503,38,0,0,0,0,0,13,0,0,0,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,299,0,,,,0,7,51,65,1.661154751,0.0,0.248,70.41,6.364,22.119,30.006,64265.744,299,2.087340092,12.13269115,9.964224715,0 504,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,290,0,,,,0,7,0,0,1.718528738,0.098,0.308,58.684,5.852,23.562,32.088,58093.815,290,2.103704774,12.07271785,9.891254581,0 505,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,286,0,,,,0,7,0,0,1.216090131,0.047,0.404,53.282,5.926,27.437,37.449,58067.27,286,2.276013695,13.03064113,10.65456358,0 506,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,273,0,,,,0,7,0,0,1.747334178,0.049,0.502,51.074,5.155,27.87,37.945,56971.799,273,2.258668606,12.99156121,10.56680814,0 507,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,259,0,,,,0,7,0,0,0.583830391,0.146,0.599,46.12,4.005,29.259,41.29,55942.585,259,2.221340746,12.72637699,10.31971728,0 -508,38,0,0,0,0,19,6,0,0,0,1,0,0,0,0,30,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,248,0,,,,0,7,72,94,1.562710886,0.048,0.563,40.2,2.401,28.496,40.024,51343.716,248,2.153196212,12.50858107,10.0780746,0 -509,38,0,0,0,0,0,76,0,3,0,0,0,0,0,41,124,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,241,0,,,,0,7,0,0,1.516738046,0.048,0.601,40.074,2.474,27.715,39.019,50619.662,241,2.184300372,12.54468253,10.13599015,0 -510,38,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,291,0,,,,0,7,0,0,1.42974593,0.0,0.202,60.405,5.274,22.978,31.669,58927.087,291,2.057787481,11.93069878,9.784145142,0 -511,38,0,0,0,0,0,0,0,0,0,0,0,0,41,0,33,225,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,289,0,,,,0,7,5,5,1.525669731,0.075,0.286,64.107,5.974,21.105,28.681,59384.472,289,2.06559825,11.93282911,9.783090524,0 -512,38,0,0,26,0,0,4,0,15,0,0,0,0,5,0,42,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,282,0,,,,0,7,82,108,1.53635367,0.0,0.309,54.931,6.32,25.719,34.948,57522.284,282,2.100396203,12.11920551,9.923423255,0 -513,38,0,0,0,0,0,0,0,0,0,0,0,41,0,0,59,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,281,0,,,,0,7,35,42,1.534359347,0.0,0.309,54.931,6.32,25.719,34.948,57522.284,281,2.231058245,12.75223014,10.43300781,0 -514,38,0,15,0,0,0,1,0,0,8,1,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,282,0,,,,0,7,1,1,1.566643099,0.048,0.357,53.336,6.06,26.079,35.749,57014.341,282,2.265844494,13.00158598,10.59421801,0 -515,38,0,0,0,0,0,0,0,0,21,0,0,0,8,0,19,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,273,0,,,,0,7,0,0,1.564961638,0.0,0.405,51.562,5.414,27.898,38.113,57392.067,273,2.257546401,12.9731959,10.56206094,0 -516,38,0,0,0,0,1,25,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,274,0,,,,0,7,14,14,1.550821816,0.048,0.415,41.664,3.608,27.857,38.18,51100.124,274,2.218948437,12.86346948,10.42660667,0 -517,38,0,0,27,0,0,7,0,7,0,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,268,0,,,,0,7,36,44,1.552776241,0.049,0.454,49.399,4.707,26.937,37.139,55384.119,268,2.249956021,12.93002744,10.49341709,0 -518,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,266,0,,,,0,7,15,15,1.55195616,0.0,0.463,43.051,3.053,27.516,38.021,51885.735,266,2.188087824,12.68151702,10.25483533,0 -519,38,0,28,0,0,0,28,0,0,0,0,0,0,0,0,59,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,263,0,,,,0,7,0,0,1.540206853,0.098,0.503,45.917,4.043,29.011,40.182,55103.175,263,2.229527021,12.81927471,10.36738175,0 -520,38,0,0,0,22,0,0,0,0,0,0,0,9,0,0,26,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,260,0,,,,0,7,0,0,1.547619641,0.097,0.512,40.604,2.736,28.195,39.038,50971.177,260,2.166222121,12.58547227,10.14536525,0 -521,38,0,0,0,0,2,5,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,257,0,,,,0,7,9,9,1.518515676,0.098,0.551,42.358,2.536,29.159,41.099,53412.799,257,2.20166174,12.65566965,10.21240673,0 -522,39,0,26,0,0,0,3,0,0,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,285,0,,,,0,7,86,131,1.312984871,0.0,0.15,53.014,5.186,24.405,33.764,55538.121,285,1.839730371,10.62312027,8.703981089,0 -523,39,0,65,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,274,0,,,,0,7,5,6,1.175071664,0.0,0.088,51.35,5.437,23.814,33.897,54558.077,274,1.815289432,10.123384,8.281823555,0 -524,39,0,0,0,0,0,1,0,8,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,275,0,,,,0,7,75,112,1.55197575,0.0,0.123,50.736,5.328,25.247,35.179,54986.135,275,1.822628908,10.1774921,8.313514322,0 -525,39,0,0,0,0,0,0,0,19,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,284,0,,,,0,7,3,4,1.557707595,0.0,0.172,50.082,5.538,26.488,36.734,55562.565,284,1.942762108,11.22895152,9.185416869,0 +508,38,0,0,0,0,40,11,0,1,0,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,248,0,,,,0,7,72,94,1.562710886,0.048,0.563,40.2,2.401,28.496,40.024,51343.716,248,2.153196212,12.50858107,10.0780746,0 +509,38,0,0,0,0,0,86,0,4,0,0,0,0,0,53,54,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,241,0,,,,0,7,0,0,1.516738046,0.048,0.601,40.074,2.474,27.715,39.019,50619.662,241,2.184300372,12.54468253,10.13599015,0 +510,38,0,0,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,291,0,,,,0,7,0,0,1.42974593,0.0,0.202,60.405,5.274,22.978,31.669,58927.087,291,2.057787481,11.93069878,9.784145142,0 +511,38,0,0,0,0,0,0,0,0,0,0,0,0,18,0,18,225,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,289,0,,,,0,7,5,5,1.525669731,0.075,0.286,64.107,5.974,21.105,28.681,59384.472,289,2.06559825,11.93282911,9.783090524,0 +512,38,0,0,22,0,0,5,0,14,0,0,0,0,14,0,52,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,282,0,,,,0,7,82,108,1.53635367,0.0,0.309,54.931,6.32,25.719,34.948,57522.284,282,2.100396203,12.11920551,9.923423255,0 +513,38,0,0,0,0,0,0,0,0,0,0,0,58,0,0,50,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,281,0,,,,0,7,35,42,1.534359347,0.0,0.309,54.931,6.32,25.719,34.948,57522.284,281,2.231058245,12.75223014,10.43300781,0 +514,38,0,8,0,0,0,1,0,0,17,2,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,282,0,,,,0,7,1,1,1.566643099,0.048,0.357,53.336,6.06,26.079,35.749,57014.341,282,2.265844494,13.00158598,10.59421801,0 +515,38,0,0,0,0,0,0,0,0,48,0,0,0,8,0,33,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,273,0,,,,0,7,0,0,1.564961638,0.0,0.405,51.562,5.414,27.898,38.113,57392.067,273,2.257546401,12.9731959,10.56206094,0 +516,38,0,0,0,0,2,13,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,274,0,,,,0,7,14,14,1.550821816,0.048,0.415,41.664,3.608,27.857,38.18,51100.124,274,2.218948437,12.86346948,10.42660667,0 +517,38,0,0,30,0,0,9,0,5,0,0,0,0,0,0,74,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,268,0,,,,0,7,36,44,1.552776241,0.049,0.454,49.399,4.707,26.937,37.139,55384.119,268,2.249956021,12.93002744,10.49341709,0 +518,38,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,266,0,,,,0,7,15,15,1.55195616,0.0,0.463,43.051,3.053,27.516,38.021,51885.735,266,2.188087824,12.68151702,10.25483533,0 +519,38,0,15,0,0,0,36,0,0,0,0,0,0,0,0,50,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,263,0,,,,0,7,0,0,1.540206853,0.098,0.503,45.917,4.043,29.011,40.182,55103.175,263,2.229527021,12.81927471,10.36738175,0 +520,38,0,0,0,15,0,0,0,0,0,0,0,11,0,0,42,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,260,0,,,,0,7,0,0,1.547619641,0.097,0.512,40.604,2.736,28.195,39.038,50971.177,260,2.166222121,12.58547227,10.14536525,0 +521,38,0,0,0,0,2,4,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,257,0,,,,0,7,9,9,1.518515676,0.098,0.551,42.358,2.536,29.159,41.099,53412.799,257,2.20166174,12.65566965,10.21240673,0 +522,39,0,10,0,0,0,3,0,0,0,0,0,0,0,0,30,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,285,0,,,,0,7,86,131,1.312984871,0.0,0.15,53.014,5.186,24.405,33.764,55538.121,285,1.839730371,10.62312027,8.703981089,0 +523,39,0,90,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,274,0,,,,0,7,5,6,1.175071664,0.0,0.088,51.35,5.437,23.814,33.897,54558.077,274,1.815289432,10.123384,8.281823555,0 +524,39,0,0,0,0,0,2,0,16,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,275,0,,,,0,7,75,112,1.55197575,0.0,0.123,50.736,5.328,25.247,35.179,54986.135,275,1.822628908,10.1774921,8.313514322,0 +525,39,0,0,0,0,0,0,0,15,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,284,0,,,,0,7,3,4,1.557707595,0.0,0.172,50.082,5.538,26.488,36.734,55562.565,284,1.942762108,11.22895152,9.185416869,0 526,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,278,0,,,,0,7,0,0,1.542827853,0.05,0.22,50.647,5.816,26.296,36.261,55621.17,278,1.93455533,11.18619991,9.144452856,0 -527,39,0,32,0,0,0,0,0,28,0,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,269,0,,,,0,7,120,134,4.137702741,0.048,0.171,49.296,5.636,27.55,38.302,56062.498,269,1.802358322,10.07412777,8.220912391,0 -528,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,9.995,8.136,,272,0,,,,0,7,16,20,1.551682219,0.048,0.171,49.296,5.636,27.55,38.302,56062.498,272,1.927854895,10.77239773,8.792031857,0 -529,39,0,41,0,0,3,3,0,3,3,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.0,12.787,10.409,,258,0,,,,0,7,271,424,3.981844918,0.0,0.172,40.744,4.677,25.005,36.044,49144.013,258,1.788668173,9.689329955,7.901563953,0 -530,39,0,0,0,0,49,0,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,0.0,10.33,8.409,,278,2,,,,0,7,32,46,1.552032548,0.0,0.357,52.702,5.802,25.914,35.385,56375.971,278,2.09843157,12.12273782,9.890300857,0 -531,39,0,0,0,0,0,0,0,0,0,0,3,0,73,0,51,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,269,0,,,,0,7,58,87,1.55277821,0.0,0.22,47.377,5.24,26.154,36.225,53505.402,269,1.993941658,11.53957994,9.412199037,0 -532,39,0,0,0,0,0,1,0,60,0,0,0,0,0,0,81,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,260,0,,,,0,7,249,386,3.107761212,0.0,0.269,47.601,5.988,27.253,37.535,54486.971,260,1.890033534,10.56461083,8.592447195,0 -533,40,0,37,0,0,0,0,0,0,22,0,0,0,0,0,80,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,223,0,,,,0,7,64,80,2.091631184,0.048,0.294,25.997,3.514,26.836,40.19,42360.282,223,1.650291704,8.752313787,7.093140724,0 -534,40,0,67,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,213,0,,,,0,7,50,61,1.722379447,0.0,0.342,26.02,3.658,26.919,40.493,42567.893,213,1.602616033,8.436470087,6.799405703,0 -535,40,0,0,0,0,0,13,0,0,124,0,0,0,0,0,142,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,245,0,,,,0,7,31,37,3.820695387,0.0,0.205,34.61,4.638,27.483,39.611,47501.528,245,1.752951932,9.477382415,7.708795547,0 -536,40,0,70,0,0,0,69,0,7,0,0,0,1,0,0,98,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,233,0,,,,0,7,92,114,3.69623283,0.049,0.308,32.839,2.957,27.093,39.167,46084.195,233,1.701274757,9.108824993,7.402159081,0 -537,40,0,0,0,0,1,13,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,223,0,,,,0,7,131,167,3.104506754,0.099,0.353,26.351,3.537,27.017,40.296,42654.314,223,1.682675045,8.942760605,7.220275032,0 -538,40,0,52,0,0,1,2,0,14,4,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,239,0,,,,0,7,185,250,3.103662199,0.049,0.322,33.251,3.437,27.389,38.577,45969.481,239,1.798697346,9.690839421,7.865893764,0 -539,40,0,0,0,0,1,8,0,2,0,20,0,0,4,0,16,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,225,0,,,,0,7,144,192,3.101871952,0.098,0.446,23.339,3.657,29.921,42.858,42365.884,225,1.683868653,8.966133338,7.226619953,0 -540,41,0,40,0,0,0,21,0,0,0,0,0,1,0,0,62,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,240,0,,,,0,7,188,263,3.104698976,0.0,0.406,35.865,3.464,27.205,38.525,47609.996,240,1.78348602,9.896438357,7.996445571,0 -541,41,0,59,0,0,0,5,0,0,126,0,0,0,0,0,232,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,222,0,,,,0,7,103,132,3.104936964,0.098,0.495,34.744,3.34,29.332,41.837,49012.41,222,1.680749051,8.960279803,7.220195936,0 -542,41,0,34,0,0,5,2,0,4,0,0,15,0,40,0,83,268,69,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,239,2,,,,0,7,54,70,3.102517092,0.0,0.454,31.673,3.722,27.686,39.272,45404.962,239,1.941144059,10.78421918,8.711575458,0 -543,41,0,32,0,0,0,2,0,0,0,43,0,0,0,0,85,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,221,0,,,,0,7,122,160,3.102543202,0.097,0.592,36.565,3.78,28.009,39.818,48884.554,221,1.672409612,9.217508363,7.418524571,0 -544,42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,144,0,,,,0,7,17,25,5.286686595,0.231,1.167,23.325,1.023,12.605,21.908,28949.604,144,0.0,0.0,0.0,0 -545,42,0,0,0,0,0,7,0,1,4,0,0,7,0,0,28,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,13,21,3.035985037,0.097,1.033,22.603,1.929,15.123,24.576,30194.519,152,0.0,0.0,0.0,0 -546,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,60,108,3.044701356,0.1,1.108,29.809,2.28,18.769,29.368,37873.349,160,1.4323846,7.775538462,6.236078484,0 -547,42,0,0,0,0,38,1,0,15,4,0,0,75,0,0,75,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,166,0,,,,0,7,76,142,3.104972937,0.1,1.059,35.322,2.403,19.75,30.382,42050.313,166,1.472311947,8.038686619,6.447502984,0 -548,42,0,10,0,0,0,5,0,1,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,54,96,3.102310215,0.023,0.94,39.347,2.835,20.465,30.785,44884.988,173,1.486290629,8.116134741,6.509619962,0 -549,42,0,0,0,0,0,6,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,71,129,2.685009225,0.194,0.865,30.924,2.849,23.72,35.326,42399.827,173,1.755976843,8.997572971,7.237604599,0 -550,42,0,74,0,0,0,4,0,0,14,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.769,,181,0,,,,0,7,62,115,3.101721471,0.145,0.816,28.076,2.624,23.449,35.003,40369.998,181,1.768531495,9.487943807,7.620409016,0 -551,42,0,49,0,0,0,2,0,0,24,0,0,0,2,0,118,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,174,0,,,,0,7,46,81,3.10455165,0.097,0.865,31.995,2.098,20.929,32.192,41079.561,174,1.711918598,9.460271076,7.590152656,0 -552,42,0,0,0,0,36,0,0,0,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,170,0,,,,0,7,49,87,3.122335048,0.0,0.838,18.033,1.724,14.491,23.361,26492.378,170,1.654693137,9.109243119,7.306809688,0 -553,42,0,50,0,0,2,0,0,0,18,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,172,0,,,,0,7,25,36,3.104513458,0.145,0.915,36.428,2.47,21.573,32.536,44136.878,172,1.663194993,9.190259679,7.372411145,0 -554,42,0,0,0,0,115,1,0,14,0,0,0,0,0,0,85,0,0,PORTLAND,PORTLAND,0,2.0,7.0,5.698,,166,0,,,,0,7,7,11,3.073194122,0.048,0.888,23.788,2.288,17.389,27.861,33055.469,166,1.63982133,9.036380725,7.248463477,0 -555,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,161,0,,,,0,7,82,156,2.441693147,0.083,1.019,25.798,2.246,15.212,24.588,32247.172,161,0.0,0.0,0.0,0 -556,42,0,1,3,0,0,5,0,4,1,0,0,0,1,0,25,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,41,54,3.104479178,0.097,0.963,33.65,2.691,18.936,29.093,40155.622,173,1.531516871,8.367129317,6.710956761,0 -557,42,0,0,0,0,108,13,0,0,0,0,0,0,0,0,140,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,161,0,,,,0,7,45,78,2.908093966,0.048,0.984,24.821,2.117,16.97,27.103,33231.036,161,0.0,0.0,0.0,0 -558,42,0,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,165,0,,,,0,7,77,145,3.05804633,0.049,0.985,25.491,2.067,17.487,27.93,34189.667,165,1.603876477,8.829083169,7.082118687,0 -559,42,0,0,0,0,9,2,0,0,0,0,2,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,168,0,,,,0,7,6,10,3.042551462,0.049,0.985,25.491,2.067,17.487,27.93,34189.667,168,1.556118439,8.563673317,6.869207558,0 -560,42,0,0,0,0,0,0,0,0,0,0,0,7,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,158,0,,,,0,7,68,125,3.027462648,0.097,1.033,22.603,1.929,15.123,24.576,30194.519,158,0.0,0.0,0.0,0 -561,43,0,0,0,0,2213,0,0,0,0,0,0,0,0,0,1390,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,187,0,,,,0,7,0,0,6.206734275,999999.0,999999.0,224.45,0.0,13.209,14.176,152720.322,187,1.520350351,8.363696958,6.688178117,0 -562,43,0,14,0,0,0,1,0,1,11,0,26,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,31,42,3.09758971,0.049,0.739,35.626,2.764,24.553,35.51,45527.317,210,1.727862556,9.561268749,7.65990928,0 -563,43,0,0,0,0,38,1,0,3,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,201,1,,,,0,7,7,7,3.101724448,0.0,0.788,39.809,2.628,24.558,35.573,48244.719,201,1.622728658,8.977723092,7.190401096,0 -564,43,0,17,0,0,1,30,0,0,0,0,10,1,0,0,66,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,230,0,,,,0,7,128,190,3.108901738,0.049,0.649,40.454,4.034,23.154,32.645,46783.723,230,1.828583762,10.18360347,8.173608756,0 -565,43,0,0,0,0,10,24,0,0,2,0,0,0,3,0,56,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,236,0,,,,0,7,16,21,3.106075239,0.0,0.551,34.576,3.442,27.012,38.063,46488.889,236,1.932538889,10.73993277,8.677416591,0 -566,43,0,50,0,0,10,12,0,0,0,0,2,0,0,0,100,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,219,0,,,,0,7,94,126,3.103756353,0.097,0.592,36.565,3.78,28.009,39.818,48884.554,219,1.828716968,10.06968122,8.10230087,0 -567,43,0,18,0,0,0,26,0,11,0,0,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,236,0,,,,0,7,31,42,3.101160303,0.0,0.551,34.576,3.442,27.012,38.063,46488.889,236,1.878280867,10.43409252,8.412059103,0 -568,43,0,32,0,0,0,0,0,0,0,0,0,2,0,0,18,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,124,182,3.104592412,0.099,0.641,35.8,3.645,25.133,36.226,46096.96,217,1.806670332,9.969355721,8.017409267,0 -569,43,0,11,0,0,2,2,0,0,17,0,0,3,2,0,21,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,195,0,,,,0,7,60,81,3.102443996,0.049,0.72,35.503,2.683,25.863,38.247,47199.938,195,1.777396145,9.833830878,7.894969339,0 -570,43,0,0,0,0,29,5,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,235,0,,,,0,7,100,127,3.105157249,0.049,0.6,37.038,3.703,26.204,36.984,47373.923,235,1.85756159,10.34977464,8.309683108,0 -571,43,0,44,0,0,0,1,0,0,2,0,0,1,0,0,97,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,212,0,,,,0,7,158,243,3.119937108,0.098,0.69,35.946,3.65,26.132,38.016,47335.978,212,1.791193367,9.898015959,7.958009656,0 -572,43,0,53,0,0,0,2,0,0,18,0,1,6,0,0,197,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,188,0,,,,0,7,107,151,3.089047352,0.0,0.769,36.775,3.173,24.939,36.613,46967.864,188,1.69817483,9.323162817,7.485358935,0 -573,43,0,36,0,0,110,15,0,2,24,0,0,0,0,0,99,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,99,134,3.103988146,0.049,0.818,34.971,2.873,22.263,33.068,43544.591,186,1.636677942,8.986675871,7.214409468,0 -574,44,0,0,0,0,16,11,0,12,53,13,0,0,0,0,82,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,0,0,1.966958089,0.0,0.515,22.7,5.47,32.246,49.154,45986.635,180,1.65127859,8.350997837,6.726923664,0 -575,44,0,5,0,0,0,16,0,24,36,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,184,0,,,,0,7,13,16,1.417196118,0.0,0.532,22.498,4.729,29.97,46.088,43894.84,184,1.685268272,8.565829515,6.897872025,0 -576,44,0,0,0,0,14,13,0,0,0,0,0,2,0,0,50,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,178,287,2.922990045,0.0,0.472,29.937,4.452,28.822,43.373,46918.42,198,1.676166172,8.544294546,6.882377225,0 -577,44,0,38,0,0,0,5,0,0,0,0,0,1,0,0,49,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,207,0,,,,0,7,125,185,3.306129031,0.053,0.395,24.389,3.933,27.911,41.189,41969.594,207,1.676551058,8.61191192,6.940290897,0 -578,44,0,0,0,0,164,22,0,3,13,0,0,0,0,0,509,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,66,94,3.103982454,0.148,0.496,21.693,3.927,31.488,45.173,42794.452,208,1.722063053,8.857193172,7.13562141,0 -579,44,0,0,0,0,63,3,0,0,5,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,179,0,,,,0,7,10,13,2.514934311,0.0,0.559,20.581,4.347,28.781,44.408,41592.923,179,1.691014249,8.629517804,6.947602526,0 -580,44,0,9,0,0,0,0,0,0,38,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,202,0,,,,0,7,72,103,3.103386971,0.048,0.574,28.211,3.796,28.207,42.213,45071.227,202,1.721351419,8.879863016,7.152150115,0 -581,44,0,0,3,0,0,1,2,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,52,71,2.625664475,0.097,0.768,29.737,3.07,26.209,38.865,43905.447,173,1.669254028,8.518148889,6.853366431,0 -582,44,0,4,0,0,8,8,0,0,0,0,0,1,0,0,19,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,179,0,,,,0,7,78,110,3.3409058,0.0,0.619,29.637,3.79,26.21,39.7,44375.556,179,1.684630758,8.596794017,6.919904066,0 -583,44,0,18,0,0,0,22,0,8,24,0,1,7,0,0,75,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,204,0,,,,0,7,127,188,3.103864879,0.0,0.623,29.442,3.398,27.625,40.393,44694.621,204,1.705392093,9.168498484,7.371847567,0 -584,44,0,31,0,0,2,10,0,1,15,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.769,,184,0,,,,0,7,21,24,3.104725522,0.097,0.72,29.709,3.151,26.363,39.323,44180.873,184,1.7039623,8.712274376,7.010635028,0 -585,44,0,16,0,0,10,10,0,1,22,0,2,0,0,0,94,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,96,139,3.103903162,0.0,0.671,35.344,3.278,26.797,39.643,47991.879,198,1.799440539,9.932167244,7.975931134,0 -586,44,0,0,2,0,76,2,0,24,68,0,0,0,0,0,82,0,0,PORTLAND,PORTLAND,0,2.0,12.0,6.818,,182,0,,,,0,7,65,92,3.104687331,0.097,0.768,29.737,3.07,26.209,38.865,43905.447,182,1.816514738,9.320717618,7.498630564,0 -587,45,0,0,0,0,104,1,0,0,5,0,0,0,0,0,149,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,200,0,,,,0,7,0,0,3.103864525,0.049,0.837,38.847,2.336,21.639,31.671,45131.579,200,1.518201914,8.781760855,7.017563678,0 -588,45,0,57,0,0,8,3,0,0,5,0,0,0,0,0,70,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,29,37,3.102809745,0.0,0.886,37.942,2.505,20.83,30.546,43831.908,198,1.486282222,8.594067841,6.864399134,0 +527,39,0,31,0,0,0,0,0,29,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,269,0,,,,0,7,120,134,4.137702741,0.048,0.171,49.296,5.636,27.55,38.302,56062.498,269,1.802358322,10.07412777,8.220912391,0 +528,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,9.995,8.136,,272,0,,,,0,7,16,20,1.551682219,0.048,0.171,49.296,5.636,27.55,38.302,56062.498,272,1.927854895,10.77239773,8.792031857,0 +529,39,0,38,0,0,6,7,0,5,4,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,2.0,12.787,10.409,,258,0,,,,0,7,271,424,3.981844918,0.0,0.172,40.744,4.677,25.005,36.044,49144.013,258,1.788668173,9.689329955,7.901563953,0 +530,39,0,0,0,0,40,0,0,0,0,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,0.0,10.33,8.409,,278,2,,,,0,7,32,46,1.552032548,0.0,0.357,52.702,5.802,25.914,35.385,56375.971,278,2.09843157,12.12273782,9.890300857,0 +531,39,0,0,0,0,0,1,0,0,0,0,5,0,38,0,71,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,269,0,,,,0,7,58,87,1.55277821,0.0,0.22,47.377,5.24,26.154,36.225,53505.402,269,1.993941658,11.53957994,9.412199037,0 +532,39,0,0,0,0,0,2,0,44,0,0,0,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,260,0,,,,0,7,249,386,3.107761212,0.0,0.269,47.601,5.988,27.253,37.535,54486.971,260,1.890033534,10.56461083,8.592447195,0 +533,40,0,17,0,0,0,0,0,0,22,0,0,0,0,0,74,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,223,0,,,,0,7,64,80,2.091631184,0.048,0.294,25.997,3.514,26.836,40.19,42360.282,223,1.650291704,8.752313787,7.093140724,0 +534,40,0,99,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,213,0,,,,0,7,50,61,1.722379447,0.0,0.342,26.02,3.658,26.919,40.493,42567.893,213,1.602616033,8.436470087,6.799405703,0 +535,40,0,0,0,0,0,12,0,0,107,0,0,0,0,0,225,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,245,0,,,,0,7,31,37,3.820695387,0.0,0.205,34.61,4.638,27.483,39.611,47501.528,245,1.752951932,9.477382415,7.708795547,0 +536,40,0,30,0,0,0,30,0,13,0,0,0,3,0,0,150,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,233,0,,,,0,7,92,114,3.69623283,0.049,0.308,32.839,2.957,27.093,39.167,46084.195,233,1.701274757,9.108824993,7.402159081,0 +537,40,0,0,0,0,1,11,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,223,0,,,,0,7,131,167,3.104506754,0.099,0.353,26.351,3.537,27.017,40.296,42654.314,223,1.682675045,8.942760605,7.220275032,0 +538,40,0,53,0,0,1,1,0,12,2,0,0,0,0,0,48,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,239,0,,,,0,7,185,250,3.103662199,0.049,0.322,33.251,3.437,27.389,38.577,45969.481,239,1.798697346,9.690839421,7.865893764,0 +539,40,0,0,0,0,2,5,0,1,0,11,0,0,1,0,21,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,225,0,,,,0,7,144,192,3.101871952,0.098,0.446,23.339,3.657,29.921,42.858,42365.884,225,1.683868653,8.966133338,7.226619953,0 +540,41,0,48,0,0,0,9,0,0,0,0,0,2,0,0,71,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,240,0,,,,0,7,188,263,3.104698976,0.0,0.406,35.865,3.464,27.205,38.525,47609.996,240,1.78348602,9.896438357,7.996445571,0 +541,41,0,134,0,0,0,4,0,0,65,0,1,0,0,0,123,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,222,0,,,,0,7,103,132,3.104936964,0.098,0.495,34.744,3.34,29.332,41.837,49012.41,222,1.680749051,8.960279803,7.220195936,0 +542,41,0,12,0,0,6,2,0,2,0,0,7,0,59,0,108,268,69,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,239,2,,,,0,7,54,70,3.102517092,0.0,0.454,31.673,3.722,27.686,39.272,45404.962,239,1.941144059,10.78421918,8.711575458,0 +543,41,0,47,0,0,0,4,0,1,0,31,0,0,0,0,106,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,221,0,,,,0,7,122,160,3.102543202,0.097,0.592,36.565,3.78,28.009,39.818,48884.554,221,1.672409612,9.217508363,7.418524571,0 +544,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,144,0,,,,0,7,17,25,5.286686595,0.231,1.167,23.325,1.023,12.605,21.908,28949.604,144,0.0,0.0,0.0,0 +545,42,0,0,0,0,0,5,0,0,3,0,0,13,0,0,23,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,13,21,3.035985037,0.097,1.033,22.603,1.929,15.123,24.576,30194.519,152,0.0,0.0,0.0,0 +546,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,60,108,3.044701356,0.1,1.108,29.809,2.28,18.769,29.368,37873.349,160,1.4323846,7.775538462,6.236078484,0 +547,42,0,0,0,0,63,0,0,10,5,0,0,44,0,0,151,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,166,0,,,,0,7,76,142,3.104972937,0.1,1.059,35.322,2.403,19.75,30.382,42050.313,166,1.472311947,8.038686619,6.447502984,0 +548,42,0,18,0,0,0,4,0,0,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,54,96,3.102310215,0.023,0.94,39.347,2.835,20.465,30.785,44884.988,173,1.486290629,8.116134741,6.509619962,0 +549,42,0,0,0,0,0,10,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,71,129,2.685009225,0.194,0.865,30.924,2.849,23.72,35.326,42399.827,173,1.755976843,8.997572971,7.237604599,0 +550,42,0,69,0,0,0,3,0,0,15,0,0,0,0,0,122,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.769,,181,0,,,,0,7,62,115,3.101721471,0.145,0.816,28.076,2.624,23.449,35.003,40369.998,181,1.768531495,9.487943807,7.620409016,0 +551,42,0,43,0,0,0,2,0,0,43,0,0,0,2,0,108,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,174,0,,,,0,7,46,81,3.10455165,0.097,0.865,31.995,2.098,20.929,32.192,41079.561,174,1.711918598,9.460271076,7.590152656,0 +552,42,0,0,0,0,27,0,0,0,0,0,0,0,0,1,39,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,170,0,,,,0,7,49,87,3.122335048,0.0,0.838,18.033,1.724,14.491,23.361,26492.378,170,1.654693137,9.109243119,7.306809688,0 +553,42,0,36,0,0,3,0,0,0,18,0,0,0,0,0,66,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,172,0,,,,0,7,25,36,3.104513458,0.145,0.915,36.428,2.47,21.573,32.536,44136.878,172,1.663194993,9.190259679,7.372411145,0 +554,42,0,0,0,0,110,1,0,21,0,0,0,0,0,0,179,0,0,PORTLAND,PORTLAND,0,2.0,7.0,5.698,,166,0,,,,0,7,7,11,3.073194122,0.048,0.888,23.788,2.288,17.389,27.861,33055.469,166,1.63982133,9.036380725,7.248463477,0 +555,42,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,161,0,,,,0,7,82,156,2.441693147,0.083,1.019,25.798,2.246,15.212,24.588,32247.172,161,0.0,0.0,0.0,0 +556,42,0,2,7,0,0,4,0,5,1,0,0,0,1,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,41,54,3.104479178,0.097,0.963,33.65,2.691,18.936,29.093,40155.622,173,1.531516871,8.367129317,6.710956761,0 +557,42,0,0,0,0,118,10,0,1,0,0,0,0,0,0,113,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,161,0,,,,0,7,45,78,2.908093966,0.048,0.984,24.821,2.117,16.97,27.103,33231.036,161,0.0,0.0,0.0,0 +558,42,0,0,0,0,25,0,0,0,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,165,0,,,,0,7,77,145,3.05804633,0.049,0.985,25.491,2.067,17.487,27.93,34189.667,165,1.603876477,8.829083169,7.082118687,0 +559,42,0,0,0,0,17,2,0,1,0,0,2,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,168,0,,,,0,7,6,10,3.042551462,0.049,0.985,25.491,2.067,17.487,27.93,34189.667,168,1.556118439,8.563673317,6.869207558,0 +560,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,158,0,,,,0,7,68,125,3.027462648,0.097,1.033,22.603,1.929,15.123,24.576,30194.519,158,0.0,0.0,0.0,0 +561,43,0,0,0,0,1933,0,0,0,0,0,0,0,0,0,2003,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,187,0,,,,0,7,0,0,6.206734275,999999.0,999999.0,224.45,0.0,13.209,14.176,152720.322,187,1.520350351,8.363696958,6.688178117,0 +562,43,0,27,0,0,0,1,0,0,6,0,15,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,31,42,3.09758971,0.049,0.739,35.626,2.764,24.553,35.51,45527.317,210,1.727862556,9.561268749,7.65990928,0 +563,43,0,0,0,0,34,1,0,4,0,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,201,1,,,,0,7,7,7,3.101724448,0.0,0.788,39.809,2.628,24.558,35.573,48244.719,201,1.622728658,8.977723092,7.190401096,0 +564,43,0,28,0,0,1,32,0,0,0,0,9,2,0,0,49,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,230,0,,,,0,7,128,190,3.108901738,0.049,0.649,40.454,4.034,23.154,32.645,46783.723,230,1.828583762,10.18360347,8.173608756,0 +565,43,0,0,0,0,8,32,0,1,4,0,0,0,5,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,236,0,,,,0,7,16,21,3.106075239,0.0,0.551,34.576,3.442,27.012,38.063,46488.889,236,1.932538889,10.73993277,8.677416591,0 +566,43,0,36,0,0,23,17,0,0,0,0,2,0,0,0,112,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,219,0,,,,0,7,94,126,3.103756353,0.097,0.592,36.565,3.78,28.009,39.818,48884.554,219,1.828716968,10.06968122,8.10230087,0 +567,43,0,14,0,0,0,12,0,9,0,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,236,0,,,,0,7,31,42,3.101160303,0.0,0.551,34.576,3.442,27.012,38.063,46488.889,236,1.878280867,10.43409252,8.412059103,0 +568,43,0,31,0,0,0,0,0,0,0,0,0,2,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,124,182,3.104592412,0.099,0.641,35.8,3.645,25.133,36.226,46096.96,217,1.806670332,9.969355721,8.017409267,0 +569,43,0,10,0,0,1,5,0,0,18,0,0,2,1,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,195,0,,,,0,7,60,81,3.102443996,0.049,0.72,35.503,2.683,25.863,38.247,47199.938,195,1.777396145,9.833830878,7.894969339,0 +570,43,0,0,0,0,14,7,0,0,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,235,0,,,,0,7,100,127,3.105157249,0.049,0.6,37.038,3.703,26.204,36.984,47373.923,235,1.85756159,10.34977464,8.309683108,0 +571,43,0,66,0,0,0,2,0,0,4,0,0,0,0,0,99,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,212,0,,,,0,7,158,243,3.119937108,0.098,0.69,35.946,3.65,26.132,38.016,47335.978,212,1.791193367,9.898015959,7.958009656,0 +572,43,0,76,0,0,1,2,0,0,50,0,1,7,0,0,204,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,188,0,,,,0,7,107,151,3.089047352,0.0,0.769,36.775,3.173,24.939,36.613,46967.864,188,1.69817483,9.323162817,7.485358935,0 +573,43,0,29,0,0,101,15,0,3,15,0,0,0,0,0,111,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,99,134,3.103988146,0.049,0.818,34.971,2.873,22.263,33.068,43544.591,186,1.636677942,8.986675871,7.214409468,0 +574,44,0,0,0,0,41,15,0,20,44,12,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,0,0,1.966958089,0.0,0.515,22.7,5.47,32.246,49.154,45986.635,180,1.65127859,8.350997837,6.726923664,0 +575,44,0,4,0,0,0,10,0,32,38,0,0,0,0,0,98,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,184,0,,,,0,7,13,16,1.417196118,0.0,0.532,22.498,4.729,29.97,46.088,43894.84,184,1.685268272,8.565829515,6.897872025,0 +576,44,0,0,0,0,23,17,0,0,0,0,0,7,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,178,287,2.922990045,0.0,0.472,29.937,4.452,28.822,43.373,46918.42,198,1.676166172,8.544294546,6.882377225,0 +577,44,0,27,0,0,0,2,0,0,0,0,0,1,0,0,66,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,207,0,,,,0,7,125,185,3.306129031,0.053,0.395,24.389,3.933,27.911,41.189,41969.594,207,1.676551058,8.61191192,6.940290897,0 +578,44,0,0,0,0,375,22,0,7,9,0,0,0,0,0,240,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,66,94,3.103982454,0.148,0.496,21.693,3.927,31.488,45.173,42794.452,208,1.722063053,8.857193172,7.13562141,0 +579,44,0,0,0,0,43,2,0,0,2,0,0,0,0,0,84,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,179,0,,,,0,7,10,13,2.514934311,0.0,0.559,20.581,4.347,28.781,44.408,41592.923,179,1.691014249,8.629517804,6.947602526,0 +580,44,0,9,0,0,0,0,0,0,39,0,0,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,202,0,,,,0,7,72,103,3.103386971,0.048,0.574,28.211,3.796,28.207,42.213,45071.227,202,1.721351419,8.879863016,7.152150115,0 +581,44,0,0,5,0,0,1,2,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,52,71,2.625664475,0.097,0.768,29.737,3.07,26.209,38.865,43905.447,173,1.669254028,8.518148889,6.853366431,0 +582,44,0,2,0,0,18,11,0,0,0,0,0,1,0,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,179,0,,,,0,7,78,110,3.3409058,0.0,0.619,29.637,3.79,26.21,39.7,44375.556,179,1.684630758,8.596794017,6.919904066,0 +583,44,0,10,0,0,0,25,0,9,10,0,0,3,0,0,101,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,204,0,,,,0,7,127,188,3.103864879,0.0,0.623,29.442,3.398,27.625,40.393,44694.621,204,1.705392093,9.168498484,7.371847567,0 +584,44,0,16,0,0,3,8,0,1,14,0,0,0,0,0,37,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.769,,184,0,,,,0,7,21,24,3.104725522,0.097,0.72,29.709,3.151,26.363,39.323,44180.873,184,1.7039623,8.712274376,7.010635028,0 +585,44,0,14,0,0,6,16,0,1,19,0,2,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,96,139,3.103903162,0.0,0.671,35.344,3.278,26.797,39.643,47991.879,198,1.799440539,9.932167244,7.975931134,0 +586,44,0,0,3,0,59,2,0,43,40,0,0,0,0,0,132,0,0,PORTLAND,PORTLAND,0,2.0,12.0,6.818,,182,0,,,,0,7,65,92,3.104687331,0.097,0.768,29.737,3.07,26.209,38.865,43905.447,182,1.816514738,9.320717618,7.498630564,0 +587,45,0,0,0,0,174,2,0,0,4,0,0,0,0,0,90,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,200,0,,,,0,7,0,0,3.103864525,0.049,0.837,38.847,2.336,21.639,31.671,45131.579,200,1.518201914,8.781760855,7.017563678,0 +588,45,0,33,0,0,8,4,0,0,7,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,29,37,3.102809745,0.0,0.886,37.942,2.505,20.83,30.546,43831.908,198,1.486282222,8.594067841,6.864399134,0 589,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,193,0,,,,0,7,8,11,3.105383459,0.048,0.934,39.982,2.398,19.673,28.75,43988.49,193,1.48020519,8.569534263,6.84831521,0 -590,45,0,11,0,0,69,25,0,0,0,0,0,134,0,0,292,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,191,0,,,,0,7,155,206,3.104161395,0.097,0.983,40.774,2.423,18.664,27.446,43660.998,191,1.447582306,8.381942354,6.696014789,0 -591,45,0,55,0,0,0,22,0,0,107,7,0,1,19,0,256,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,182,0,,,,0,7,96,126,3.104239584,0.0,1.081,40.052,1.689,16.431,24.652,41410.274,182,1.416990429,8.204682634,6.550938466,0 -592,45,0,129,0,0,1,302,0,4,9,29,0,1,7,55,385,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,174,0,,,,0,7,350,463,6.23370208,0.099,1.18,38.129,1.41,15.883,24.394,40014.459,174,1.389998251,8.045251833,6.418174925,0 +590,45,0,16,0,0,54,37,0,0,0,0,0,268,1,0,412,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,191,0,,,,0,7,155,206,3.104161395,0.097,0.983,40.774,2.423,18.664,27.446,43660.998,191,1.447582306,8.381942354,6.696014789,0 +591,45,0,65,0,0,0,12,0,0,184,4,0,1,27,0,253,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,182,0,,,,0,7,96,126,3.104239584,0.0,1.081,40.052,1.689,16.431,24.652,41410.274,182,1.416990429,8.204682634,6.550938466,0 +592,45,0,69,0,0,2,131,0,9,6,38,0,1,6,55,589,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,174,0,,,,0,7,350,463,6.23370208,0.099,1.18,38.129,1.41,15.883,24.394,40014.459,174,1.389998251,8.045251833,6.418174925,0 593,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,123,132,3.10492758,0.0,0.956,40.515,2.745,19.667,29.421,44759.322,180,1.425894617,8.243905237,6.57300802,0 -594,46,0,4,0,0,113,0,0,0,16,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,64,104,3.107147024,0.0,1.011,38.748,2.23,18.342,27.778,42576.621,180,1.399886023,8.092071302,6.449095505,0 -595,46,0,38,0,0,10,29,0,2,2,0,2,0,0,0,85,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,175,0,,,,0,7,33,52,3.086216748,0.049,1.06,38.426,2.274,17.585,26.829,41762.999,175,1.369661399,7.917742074,6.307134065,0 -596,46,0,11,0,0,0,1,0,0,0,0,0,0,6,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,44,70,3.102178954,0.149,1.158,30.465,1.818,15.548,24.669,35286.147,162,1.326883696,7.632947796,6.107835705,0 -597,46,0,36,0,0,0,22,0,1,4,0,7,0,37,0,206,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,171,0,,,,0,7,0,0,3.119635636,0.049,1.109,34.864,1.884,16.633,25.711,38767.597,171,1.332403683,7.698391461,6.127738354,0 -598,46,0,0,0,0,13,3,0,8,0,0,9,0,8,0,49,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,68,111,3.104283326,0.147,1.206,30.154,1.747,14.559,23.303,34212.77,162,1.290272698,7.419823731,5.93614908,0 -599,46,0,94,3,0,4,15,0,0,11,2,0,2,0,0,114,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,169,0,,,,0,7,132,225,3.104218784,0.0,1.158,33.986,1.51,14.273,22.419,36098.998,169,1.304498381,7.53726561,5.996477912,0 -600,46,0,8,16,0,3,7,0,4,0,0,19,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,136,237,3.099684722,0.097,999999.0,30.817,1.689,13.542,21.885,33729.655,160,1.268163244,7.326116321,5.824623591,0 -601,46,0,30,0,0,0,44,0,3,0,3,0,0,0,0,138,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,166,0,,,,0,7,130,225,3.10249271,0.049,1.207,37.775,1.47,13.695,21.43,37891.039,166,1.253402478,7.237551565,5.750384146,0 -602,46,0,19,0,48,15,5,0,8,10,0,0,6,0,0,122,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,155,0,,,,0,7,38,60,3.104607669,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,155,1.240717139,7.164331891,5.691903875,0 -603,47,0,0,0,0,8,1617,0,19,0,0,0,0,0,0,2344,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,227,0,,,,0,7,17,23,3.099469485,0.0,0.66,41.724,3.187,23.808,32.509,47509.474,227,1.916928712,11.11594809,8.925520911,0 -604,47,0,13,0,0,4,12,0,0,2,1,0,0,0,1,19,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,225,0,,,,0,7,132,187,3.110079828,0.0,0.698,38.12,3.27,23.839,33.886,46083.849,225,1.728964608,10.01811145,8.028339732,0 -605,47,0,0,0,0,0,19,0,0,0,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,15,21,3.104434406,0.0,0.757,39.244,2.443,26.07,37.016,48806.326,217,1.917267471,11.1002627,8.906109546,0 -606,47,0,0,0,0,0,6,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,238,350,3.104435556,0.049,0.747,38.302,2.691,22.716,32.039,45018.569,217,1.662529537,9.631365533,7.716464901,0 -607,47,0,0,0,0,89,0,0,1,0,0,0,0,0,0,98,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,63,91,3.104392293,0.0,0.757,39.244,2.443,26.07,37.016,48806.326,210,1.878608826,10.87184133,8.717654946,0 -608,47,0,29,0,0,0,0,0,2,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,62,90,3.101892896,0.0,0.796,41.065,2.209,21.329,30.244,45638.016,208,1.611394762,9.332772251,7.472705631,0 -609,47,0,1,1,0,7,10,0,2,0,0,0,1,0,0,27,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,197,0,,,,0,7,252,386,3.111474635,0.096,0.853,40.659,1.486,22.113,32.128,46583.696,197,1.836988961,10.65420379,8.546285716,0 -610,47,0,13,0,1,63,44,0,0,12,0,0,0,0,0,142,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,82,120,3.122974376,0.0,0.845,39.371,1.667,20.808,30.032,44418.089,198,1.570394445,9.099328135,7.282474849,0 -611,48,0,48,35,0,12,114,0,0,8,22,134,135,0,102,450,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,9,0,,,,0,7,13,13,240.8833348,0.016,999999.0,5.69,0.066,0.036,0.036,3664.596,9,0.0,0.0,0.0,0 -612,48,0,2,56,0,0,8,0,10,30,0,167,23,0,37,198,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,57,0,,,,0,7,0,0,40.68055565,0.47,999999.0,17.149,0.612,0.217,0.217,11114.822,57,0.0,0.0,0.0,0 -613,48,0,0,59,50,0,127,0,0,5,0,653,60,0,132,953,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,2,0,,,,0,7,0,0,827.1022146,0.0,999999.0,1.409,0.009,0.0,0.0,901.95,2,0.0,0.0,0.0,0 -614,48,0,0,22,0,0,13,0,0,0,0,0,109,0,33,183,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,9,0,,,,0,7,0,0,98.93849382,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,9,0.0,0.0,0.0,0 -615,48,0,0,0,0,0,1,0,0,0,0,0,22,0,24,95,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,11,0,,,,0,7,0,0,52.65004325,0.034,999999.0,0.0,0.0,0.0,0.0,0.0,11,0.0,0.0,0.0,0 -616,49,0,0,0,0,0,48,0,0,9,0,0,93,0,17,134,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,51,0,,,,0,7,1,1,23.34045427,0.134,999999.0,19.195,0.362,0.625,1.155,13024.033,51,0.0,0.0,0.0,0 -617,49,0,0,0,0,0,110,0,0,0,0,2,55,0,14,211,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,43,0,,,,0,7,0,0,13.28591898,0.384,999999.0,11.763,0.374,0.032,0.032,7548.673,43,0.0,0.0,0.0,0 -618,49,0,0,1,0,0,2,0,0,11,0,24,11,0,0,86,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,63,0,,,,0,7,0,0,8.319863894,0.134,999999.0,19.195,0.362,0.625,1.155,13024.033,63,0.0,0.0,0.0,0 -619,49,0,0,3,0,0,6,18,5,5,0,39,7,0,0,96,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,69,0,,,,0,7,2,2,8.270076452,0.0,999999.0,18.799,0.368,2.619,4.752,15072.434,69,0.0,0.0,0.0,0 -620,49,0,0,23,0,0,15,0,0,5,0,64,15,0,0,124,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,80,0,,,,0,7,2,3,10.70414934,0.098,999999.0,19.357,0.388,2.76,5.008,15593.826,80,0.0,0.0,0.0,0 -621,49,0,0,0,0,0,0,0,0,0,0,26,44,0,0,63,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,87,0,,,,0,7,0,0,11.58466249,0.197,999999.0,16.268,0.406,3.954,7.296,15081.322,87,0.0,0.0,0.0,0 -622,49,0,0,359,35,87,104,0,24,29,0,113,277,5,121,1251,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,66,0,,,,0,7,1,1,94.43638237,0.259,999999.0,15.187,0.508,0.016,0.016,9729.676,66,0.0,0.0,0.0,0 -623,49,0,0,20,0,0,36,0,16,19,9,108,523,0,285,1333,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,13,0,,,,0,7,0,0,101.2078958,0.016,999999.0,5.69,0.066,0.036,0.036,3664.596,13,0.0,0.0,0.0,0 -624,49,0,0,0,0,0,0,0,0,0,0,264,105,0,0,205,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,35,0,,,,0,7,0,0,21.34306702,0.403,999999.0,11.942,0.34,0.012,0.012,7650.256,35,0.0,0.0,0.0,0 -625,49,0,0,19,0,0,57,0,0,15,0,0,93,0,12,164,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,45,0,,,,0,7,0,0,19.04117192,0.217,999999.0,24.737,0.372,0.041,0.05,15863.67,45,0.0,0.0,0.0,0 -626,49,0,36,35,0,0,85,0,0,4,0,68,300,0,37,614,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,20,0,,,,0,7,6,6,61.18968465,0.0,999999.0,9.626,0.065,0.098,0.098,6223.271,20,0.0,0.0,0.0,0 -627,49,0,21,0,0,0,47,0,0,2,0,80,0,0,0,160,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,7,3,,,,0,7,0,0,20.12842157,0.112,999999.0,1.409,0.009,0.0,0.0,901.95,7,0.0,0.0,0.0,0 -628,50,0,0,85,0,4,19,0,38,1,1,8,0,2,0,79,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,44,3,,,,0,7,219,387,70.96241958,0.344,999999.0,1.922,0.011,3.232,5.682,4866.648,44,0.0,0.0,0.0,0 +594,46,0,11,0,0,106,0,0,0,24,0,0,0,0,0,143,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,64,104,3.107147024,0.0,1.011,38.748,2.23,18.342,27.778,42576.621,180,1.399886023,8.092071302,6.449095505,0 +595,46,0,59,0,0,16,25,0,1,2,0,4,0,0,0,54,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,175,0,,,,0,7,33,52,3.086216748,0.049,1.06,38.426,2.274,17.585,26.829,41762.999,175,1.369661399,7.917742074,6.307134065,0 +596,46,0,14,0,0,1,0,0,1,0,0,0,0,5,0,27,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,44,70,3.102178954,0.149,1.158,30.465,1.818,15.548,24.669,35286.147,162,1.326883696,7.632947796,6.107835705,0 +597,46,0,62,0,0,0,40,0,0,4,0,12,0,48,0,116,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,171,0,,,,0,7,0,0,3.119635636,0.049,1.109,34.864,1.884,16.633,25.711,38767.597,171,1.332403683,7.698391461,6.127738354,0 +598,46,0,0,0,0,10,1,0,10,0,0,5,0,16,0,30,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,68,111,3.104283326,0.147,1.206,30.154,1.747,14.559,23.303,34212.77,162,1.290272698,7.419823731,5.93614908,0 +599,46,0,107,2,0,7,11,0,0,15,3,0,2,0,0,184,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,169,0,,,,0,7,132,225,3.104218784,0.0,1.158,33.986,1.51,14.273,22.419,36098.998,169,1.304498381,7.53726561,5.996477912,0 +600,46,0,14,11,0,5,6,0,3,0,0,24,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,136,237,3.099684722,0.097,999999.0,30.817,1.689,13.542,21.885,33729.655,160,1.268163244,7.326116321,5.824623591,0 +601,46,0,20,0,0,0,92,0,5,0,4,0,0,0,0,102,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,166,0,,,,0,7,130,225,3.10249271,0.049,1.207,37.775,1.47,13.695,21.43,37891.039,166,1.253402478,7.237551565,5.750384146,0 +602,46,0,33,0,22,8,10,0,11,4,0,0,3,0,0,83,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,155,0,,,,0,7,38,60,3.104607669,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,155,1.240717139,7.164331891,5.691903875,0 +603,47,0,0,0,0,5,1679,0,14,0,0,0,0,0,0,2171,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,227,0,,,,0,7,17,23,3.099469485,0.0,0.66,41.724,3.187,23.808,32.509,47509.474,227,1.916928712,11.11594809,8.925520911,0 +604,47,0,12,0,0,6,14,0,0,2,1,0,0,0,1,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,225,0,,,,0,7,132,187,3.110079828,0.0,0.698,38.12,3.27,23.839,33.886,46083.849,225,1.728964608,10.01811145,8.028339732,0 +605,47,0,0,0,0,0,13,0,0,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,15,21,3.104434406,0.0,0.757,39.244,2.443,26.07,37.016,48806.326,217,1.917267471,11.1002627,8.906109546,0 +606,47,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,238,350,3.104435556,0.049,0.747,38.302,2.691,22.716,32.039,45018.569,217,1.662529537,9.631365533,7.716464901,0 +607,47,0,0,0,0,97,0,0,0,0,0,0,1,0,0,81,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,63,91,3.104392293,0.0,0.757,39.244,2.443,26.07,37.016,48806.326,210,1.878608826,10.87184133,8.717654946,0 +608,47,0,39,0,0,0,1,0,2,0,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,62,90,3.101892896,0.0,0.796,41.065,2.209,21.329,30.244,45638.016,208,1.611394762,9.332772251,7.472705631,0 +609,47,0,1,0,0,6,10,0,1,1,0,0,1,0,0,16,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,197,0,,,,0,7,252,386,3.111474635,0.096,0.853,40.659,1.486,22.113,32.128,46583.696,197,1.836988961,10.65420379,8.546285716,0 +610,47,0,9,0,0,39,42,0,0,21,0,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,82,120,3.122974376,0.0,0.845,39.371,1.667,20.808,30.032,44418.089,198,1.570394445,9.099328135,7.282474849,0 +611,48,0,41,55,0,5,139,0,0,4,15,211,118,0,87,736,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,9,0,,,,0,7,13,13,240.8833348,0.016,999999.0,5.69,0.066,0.036,0.036,3664.596,9,0.0,0.0,0.0,0 +612,48,0,2,120,0,0,4,0,10,37,0,206,23,0,41,250,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,57,0,,,,0,7,0,0,40.68055565,0.47,999999.0,17.149,0.612,0.217,0.217,11114.822,57,0.0,0.0,0.0,0 +613,48,0,0,29,73,0,106,0,0,4,0,847,81,0,182,1446,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,2,0,,,,0,7,0,0,827.1022146,0.0,999999.0,1.409,0.009,0.0,0.0,901.95,2,0.0,0.0,0.0,0 +614,48,0,0,19,0,0,13,0,0,0,0,0,62,0,25,117,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,9,0,,,,0,7,0,0,98.93849382,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,9,0.0,0.0,0.0,0 +615,48,0,0,0,0,0,0,0,0,0,0,0,42,0,28,57,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,11,0,,,,0,7,0,0,52.65004325,0.034,999999.0,0.0,0.0,0.0,0.0,0.0,11,0.0,0.0,0.0,0 +616,49,0,0,0,0,0,37,0,0,9,0,0,137,0,37,128,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,51,0,,,,0,7,1,1,23.34045427,0.134,999999.0,19.195,0.362,0.625,1.155,13024.033,51,0.0,0.0,0.0,0 +617,49,0,0,0,0,0,108,0,0,0,0,2,82,0,13,220,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,43,0,,,,0,7,0,0,13.28591898,0.384,999999.0,11.763,0.374,0.032,0.032,7548.673,43,0.0,0.0,0.0,0 +618,49,0,0,1,0,0,4,0,0,12,0,59,14,0,0,82,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,63,0,,,,0,7,0,0,8.319863894,0.134,999999.0,19.195,0.362,0.625,1.155,13024.033,63,0.0,0.0,0.0,0 +619,49,0,0,3,0,0,9,10,5,4,0,34,3,0,0,99,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,69,0,,,,0,7,2,2,8.270076452,0.0,999999.0,18.799,0.368,2.619,4.752,15072.434,69,0.0,0.0,0.0,0 +620,49,0,0,20,0,0,24,0,0,9,0,39,9,0,0,187,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,80,0,,,,0,7,2,3,10.70414934,0.098,999999.0,19.357,0.388,2.76,5.008,15593.826,80,0.0,0.0,0.0,0 +621,49,0,0,0,0,0,0,0,0,0,0,36,66,0,0,62,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,87,0,,,,0,7,0,0,11.58466249,0.197,999999.0,16.268,0.406,3.954,7.296,15081.322,87,0.0,0.0,0.0,0 +622,49,0,0,772,45,89,137,0,36,55,0,145,279,5,155,914,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,66,0,,,,0,7,1,1,94.43638237,0.259,999999.0,15.187,0.508,0.016,0.016,9729.676,66,0.0,0.0,0.0,0 +623,49,0,0,21,0,0,44,0,12,15,7,127,376,0,332,1337,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,13,0,,,,0,7,0,0,101.2078958,0.016,999999.0,5.69,0.066,0.036,0.036,3664.596,13,0.0,0.0,0.0,0 +624,49,0,0,0,0,0,0,0,0,0,0,225,107,0,0,255,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,35,0,,,,0,7,0,0,21.34306702,0.403,999999.0,11.942,0.34,0.012,0.012,7650.256,35,0.0,0.0,0.0,0 +625,49,0,0,13,0,0,47,0,0,13,0,0,75,0,14,232,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,45,0,,,,0,7,0,0,19.04117192,0.217,999999.0,24.737,0.372,0.041,0.05,15863.67,45,0.0,0.0,0.0,0 +626,49,0,36,69,0,0,69,0,0,4,0,148,366,0,34,840,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,20,0,,,,0,7,6,6,61.18968465,0.0,999999.0,9.626,0.065,0.098,0.098,6223.271,20,0.0,0.0,0.0,0 +627,49,0,27,0,0,0,39,0,0,2,0,42,0,0,0,128,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,7,3,,,,0,7,0,0,20.12842157,0.112,999999.0,1.409,0.009,0.0,0.0,901.95,7,0.0,0.0,0.0,0 +628,50,0,0,75,0,3,10,0,22,1,0,5,0,1,0,110,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,44,3,,,,0,7,219,387,70.96241958,0.344,999999.0,1.922,0.011,3.232,5.682,4866.648,44,0.0,0.0,0.0,0 629,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,0,0,1.063805498,0.097,1.088,43.17,1.761,13.327,19.519,40120.624,160,1.395551816,8.076392144,6.458310651,0 -630,50,0,0,3,0,0,21,0,0,0,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,65,3,,,,0,7,77,134,21.03264031,0.314,999999.0,2.586,0.201,3.649,6.399,5750.268,65,0.0,0.0,0.0,0 -631,50,0,0,0,0,1,13,0,0,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,93,3,,,,0,7,29,49,5.11838718,0.257,999999.0,6.084,0.369,9.573,17.525,15109.794,93,0.0,0.0,0.0,0 -632,50,0,0,2,0,1,10,0,7,0,0,1,0,0,0,21,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,137,0,,,,0,7,23,40,3.072705233,0.096,999999.0,23.099,0.857,8.877,15.288,24567.768,137,0.0,0.0,0.0,0 -633,50,0,0,0,0,0,2,0,1,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,67,126,3.019633381,0.114,999999.0,15.654,0.316,6.943,12.674,18129.494,114,0.0,0.0,0.0,0 -634,50,0,0,0,0,1,6,0,0,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,127,0,,,,0,7,46,80,3.145561785,0.048,999999.0,17.054,0.345,7.58,13.684,19672.188,127,0.0,0.0,0.0,0 -635,50,0,0,1109,0,0,0,0,0,0,0,0,1,0,0,635,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,163,0,,,,0,7,0,0,3.514887802,0.174,999999.0,45.623,1.637,14.075,21.528,42976.452,163,1.380436451,7.980622996,6.376391789,0 -636,50,0,0,0,0,0,0,0,83,0,0,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,154,0,,,,0,7,11,11,5.325952206,0.143,1.225,39.781,1.47,14.621,22.533,39880.772,154,1.302615493,7.517701411,5.993894182,0 -637,50,0,38,0,0,3,6,0,0,8,0,13,0,0,0,101,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,144,0,,,,0,7,13,24,3.090032142,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,144,1.179668462,6.768594776,5.434819388,0 -638,50,0,32,0,0,5,14,0,0,0,0,22,11,0,1,118,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,149,0,,,,0,7,5,6,2.997250482,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,149,1.207161626,6.965387111,5.553646747,0 -639,50,0,21,0,0,4,18,0,0,2,0,0,4,1,0,78,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,145,0,,,,0,7,73,140,6.194679859,0.127,999999.0,26.165,0.556,10.797,19.37,29142.753,145,1.144491787,6.563530523,5.270327419,0 -640,50,0,0,0,0,0,2,0,34,0,6,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,135,0,,,,0,7,125,229,3.014954901,0.096,999999.0,17.119,0.444,7.125,12.857,19184.829,135,0.0,0.0,0.0,0 -641,50,0,12,0,0,0,37,0,0,0,0,4,0,0,0,42,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,124,0,,,,0,7,46,78,2.936784035,0.048,999999.0,17.054,0.345,7.58,13.684,19672.188,124,0.0,0.0,0.0,0 -642,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,82,3,,,,0,7,59,100,2.151775682,0.313,999999.0,5.701,0.411,8.477,15.474,13552.028,82,0.0,0.0,0.0,0 -643,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,79,3,,,,0,7,41,71,2.142214278,0.361,999999.0,5.875,0.427,8.074,14.583,13092.956,79,0.0,0.0,0.0,0 -644,50,0,0,9,0,2,12,0,0,0,0,0,0,10,0,72,117,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,89,0,,,,0,7,151,283,13.30049662,0.122,999999.0,17.754,0.389,4.953,9.24,17276.109,89,0.0,0.0,0.0,0 -645,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,44,3,,,,0,7,10,17,2.690234841,0.405,999999.0,1.953,0.049,3.64,6.383,5335.344,44,0.0,0.0,0.0,0 -646,50,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,74,3,,,,0,7,7,12,2.752565035,0.313,999999.0,5.701,0.411,8.477,15.474,13552.028,74,0.0,0.0,0.0,0 -23327,2100,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,817.3171311,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,"80,826" -23328,2101,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,795.9022243,999999.0,999999.0,0.203,0.004,0.206,0.818,653.22,0,0.0,0.0,0.0,"14,642" -23329,2102,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,352.5295851,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,"1,793" -23330,2103,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,162.3894887,0.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,"6,630" -23331,2104,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,62.14536128,999999.0,999999.0,0.097,0.0,0.033,0.112,133.447,0,0.0,0.0,0.0,"6,536" -23332,2105,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,264.8704426,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,"3,252" +630,50,0,0,5,0,0,16,0,0,0,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,65,3,,,,0,7,77,134,21.03264031,0.314,999999.0,2.586,0.201,3.649,6.399,5750.268,65,0.0,0.0,0.0,0 +631,50,0,0,0,0,2,18,0,0,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,93,3,,,,0,7,29,49,5.11838718,0.257,999999.0,6.084,0.369,9.573,17.525,15109.794,93,0.0,0.0,0.0,0 +632,50,0,0,2,0,1,5,0,3,0,0,1,0,0,0,10,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,137,0,,,,0,7,23,40,3.072705233,0.096,999999.0,23.099,0.857,8.877,15.288,24567.768,137,0.0,0.0,0.0,0 +633,50,0,0,0,0,0,2,0,1,0,0,1,0,0,0,5,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,67,126,3.019633381,0.114,999999.0,15.654,0.316,6.943,12.674,18129.494,114,0.0,0.0,0.0,0 +634,50,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,127,0,,,,0,7,46,80,3.145561785,0.048,999999.0,17.054,0.345,7.58,13.684,19672.188,127,0.0,0.0,0.0,0 +635,50,0,0,959,0,0,0,0,0,0,0,0,0,0,0,978,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,163,0,,,,0,7,0,0,3.514887802,0.174,999999.0,45.623,1.637,14.075,21.528,42976.452,163,1.380436451,7.980622996,6.376391789,0 +636,50,0,0,0,0,0,0,0,164,0,0,0,0,0,0,84,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,154,0,,,,0,7,11,11,5.325952206,0.143,1.225,39.781,1.47,14.621,22.533,39880.772,154,1.302615493,7.517701411,5.993894182,0 +637,50,0,44,0,0,4,3,0,0,9,0,12,0,1,0,65,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,144,0,,,,0,7,13,24,3.090032142,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,144,1.179668462,6.768594776,5.434819388,0 +638,50,0,42,0,0,2,15,0,0,0,0,23,16,0,1,98,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,149,0,,,,0,7,5,6,2.997250482,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,149,1.207161626,6.965387111,5.553646747,0 +639,50,0,49,0,0,3,35,0,0,1,0,0,4,1,0,56,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,145,0,,,,0,7,73,140,6.194679859,0.127,999999.0,26.165,0.556,10.797,19.37,29142.753,145,1.144491787,6.563530523,5.270327419,0 +640,50,0,0,0,0,0,3,0,56,0,7,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,135,0,,,,0,7,125,229,3.014954901,0.096,999999.0,17.119,0.444,7.125,12.857,19184.829,135,0.0,0.0,0.0,0 +641,50,0,26,0,0,0,44,0,0,0,0,5,0,0,0,35,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,124,0,,,,0,7,46,78,2.936784035,0.048,999999.0,17.054,0.345,7.58,13.684,19672.188,124,0.0,0.0,0.0,0 +642,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,82,3,,,,0,7,59,100,2.151775682,0.313,999999.0,5.701,0.411,8.477,15.474,13552.028,82,0.0,0.0,0.0,0 +643,50,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,79,3,,,,0,7,41,71,2.142214278,0.361,999999.0,5.875,0.427,8.074,14.583,13092.956,79,0.0,0.0,0.0,0 +644,50,0,0,12,0,1,12,0,0,0,0,0,0,20,0,26,117,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,89,0,,,,0,7,151,283,13.30049662,0.122,999999.0,17.754,0.389,4.953,9.24,17276.109,89,0.0,0.0,0.0,0 +645,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,44,3,,,,0,7,10,17,2.690234841,0.405,999999.0,1.953,0.049,3.64,6.383,5335.344,44,0.0,0.0,0.0,0 +646,50,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,74,3,,,,0,7,7,12,2.752565035,0.313,999999.0,5.701,0.411,8.477,15.474,13552.028,74,0.0,0.0,0.0,0 +23327,2100,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,817.3171311,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,80826 +23328,2101,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,795.9022243,999999.0,999999.0,0.203,0.004,0.206,0.818,653.22,0,0.0,0.0,0.0,14642 +23329,2102,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,352.5295851,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,1793 +23330,2103,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,162.3894887,0.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,6630 +23331,2104,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,62.14536128,999999.0,999999.0,0.097,0.0,0.033,0.112,133.447,0,0.0,0.0,0.0,6536 +23332,2105,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,264.8704426,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,3252 diff --git a/resident/model_data/metro/data_cropped/transitSkims__AM.omx b/resident/model_data/metro/data_cropped/transitSkims__AM.omx index 426306c385090d960f70395b090062a41572dcc3..2b7ee27e7898c1438845bf05cab01cd44cd76f35 100644 GIT binary patch delta 608 zcmX@xAbPezbi)>2CZBcF^YfUcCs#7_Z+^ggh6^O%KatsL^9uJJkMwWq?W- zZH_QP;{31$a(uytEZRK76V5T(d?JL02QE{Q2$xy3St1w0k^jhSy*aSrG*}tf(umd^ zgr1B^NP0Nt0Xcq9w>hjl!vo@gowH#ZLGoB$Sv-pI> zx$zgs@dq1iw4H;KF@%vR5X|e^{(_4U=sJkpqU}G#8R04yZJ(ix%(Kvk@<2Y^UTDP# zv>K-GfjhFwhG1l#LOhfQ3XJxMEJh$^+8&X`EXu+Zux>lhhx52W4E`!8V|^=>0o1_8 z3zPx}$@ZV~n1ODC@n)_9@gTlfwB2$Wln1h7d*MN5U{D6G+irgjWD<~Z|0a}C{}jpq mdID%RO#jJ$2-A$V|KwyjBgGU1ju(se|0*oo|EsY2Ndo|1RrT`# delta 608 zcmX@xAbPezbi)>2rpc?O=jSm?Pp)L<-~5303>QeieMxg7UMr{8f&InhzX!{Ih5N|rf;_VjtP#(yK z+Y7B2fmXxh9=Ic`YzRi?Da1p0AYZmeWHACU)AoogW>FTP{_Vhkn8(dDW7T&4Dkx)p zE0h7$z{U%d0!8Mc?LX%+16>2-&0GcI&4kKXZiDhbc5E*^$P5h1nX9(jp97f$WZb_A vWz;`~GJu`{nhgnsMcYsQ1L=qGjJE&eWH}=R;sH&wX#cOmvi-jbtDiIgoRb1D diff --git a/resident/model_data/metro/data_cropped/transitSkims__EA.omx b/resident/model_data/metro/data_cropped/transitSkims__EA.omx index 5552c7d53885a58da78ecbc94c8f41cd3dbb0cef..55824a7e72edf69810b80b06c2d925c5603f3ba2 100644 GIT binary patch delta 527 zcmeyhNbJ`lu?<^zS=`ncWlc_C*4X@j_Y4=4+q%u`B+__+^klwmi#G32`@_ZL4q-3$k4)|&$>PJo)Uko5u~J*Byk=erF-{yBlo0FpV>w0X2F;46*oxVBh!) zVFO*bor9AxgptW--S#*x#&0}O)!ToFGs2Z`pP`JzvCxNbz)s&@XvGM0j_11VcJ7Qo z`+W3){ e&|IH&lR^I1aAY|n1>sn<>&38a*Nb8GF$DmlW7IwX delta 527 zcmeyhNbJ`lu?<^zS$b9(Wlc_C*4X@j_Y4|O}_hb@9V!xO?@CtsjAdGgPvw@gtyIdA?oi#|wyrs+#wRRgpjEO)^d!UTE6U;#8PXs%8 zyT&zUpd+B16AzI%8E>JSbrROw7ye)dx?$3)?Rl&$K;wW6K0zpBoeY!#3}>LZlOX2) gFl7OnJ9*V)kpDFtS(^b diff --git a/resident/model_data/metro/data_cropped/transitSkims__EV.omx b/resident/model_data/metro/data_cropped/transitSkims__EV.omx index e403785b6e3bcab55a1cc27525e331376c90e1e7..30de8c7c3dd28795f8531ed9669d84e1cf438a24 100644 GIT binary patch delta 553 zcmX?lMdauekqujTSz^~2Wlc_C*4X@j_Y4^KPfhb@9V!xO?@Ct+kLchDg#tYLp;~Bybi%&py0>r=@e<5t3 z1GjT*4uj`;e5ioI>KLT!ZVe+8*m)4NnM7H(Gl{Y~ivj>XV(s$) delta 553 zcmX?lMdauekqujTSyrqv%9@bruBxrbGJ7 diff --git a/resident/model_data/metro/data_cropped/transitSkims__MD.omx b/resident/model_data/metro/data_cropped/transitSkims__MD.omx index c53e9e2c463cb32acb036f825f457cf4dbaa210a..4b7e097e4057891fdd8aa9a76070fae5dde0f096 100644 GIT binary patch delta 614 zcmdnASY*>;kqujTnS$0$e_z8aJ-L#ZfAa(0Gh85n^YfXlH@}q7hRH74yhH5|SO%zc z(dGyvB+d_8B+d*^ILB!7i4YzhreLt~i#Asz0%c$viChQ=XphzAfQmCywgF{Ap!NhDf^hcVVP3rXei)SQ=7Y4QSWeSuB zwo|cy8E9wNy6wPln#T=d^mjlR`ct3`ph7lYxc;kqujTnP#n;{=SA;dU7Q*|K=Z7s4XND)7W3>512oDe3fQm$*%p9m`61fl#&>pMJ0TpL>Kr&!UBU`h< z9I!nZlaTaq%tO-Suo9vNtZc(JBxM1IfSkFjrtiPQym<4+v%kR{uss?#fqH;4AU)Gp z`Z6nQ-tp`XSQ>1K#V3eHFz3c!ILBx^2Pb0)Bhx~#&aUk*xEOQb=4}5V&InhzX!{Ih z5N{sDj_nruP#(zo?FCkhK>J~G58RPeHUuN{6ylNewMS$zZjZ=fTKfpD7wC4NE%Twa zct#@gUZy~KU^^8Hn1OcAU$q_Rsd?NWMt=vCp+5!0Sg>k4P$3&HkO2;t?Uidm`e8iD toyfeMN1!~g*&ok?%mx|&3~8WA3s-HAf5H4u3dm@WXJ*+R&&(Rk2LRI)9Yz2E diff --git a/resident/model_data/metro/data_cropped/transitSkims__PM.omx b/resident/model_data/metro/data_cropped/transitSkims__PM.omx index 25f708f40fb2aaeb7d14728cdcc02a3d0bc0961f..14d2b5f997fc7f5d0388ea45117b56d4026ec3b0 100644 GIT binary patch delta 558 zcmaEKSme=RkqujTS;E&DWlc_C*4X@j_Y4>suW_6$!5d!2;Q<`W@2JTUbYi3l|kxiB?Wn*%D&@GwQL+bq|*3`B#>p00bBSz&X> zq&r+tfz2HAfEps#O_$4JwBGEv@-$cn-?n+&Af4+DLTJCU5c=H>HeRMEh%0A218Rh_ zEj}UGH~vD{Kv!<(;A9M8WQtw4J&ud<8xKge-`U06e~L5yhH2eCLzxk-ce{l?l(SC4 zYI}hdBhdX(>$cmuGXkxTUbp>T5R_3D2Vt}WUAH>|h!RWk#93gm$F{Oy3sfH-rfAaQILKsoCqthbk~M$+?i2a>YZBS;+8 t3vfMF+hcDt1N{&SvFGdykPMIm3Yx#4na@Z;I2P^9{4Cp<`C0D^0RW!%?_&S} delta 558 zcmaEKSme=RkqujTSr)D`%9@1Tc6IuY}yt`q&y|0=X=u@b&za2=*=1xK4*e(EZmam$;PQrS7*=mp;AO{$Z+n?@$ z%78enN02zG7vOrVw#VLP2KoW2=j;oR%nFccM%({>W Date: Wed, 17 Jun 2026 12:52:27 -0400 Subject: [PATCH 46/46] Add launch configs --- .vscode/launch.json | 56 +++++++++++++++++++ ..._mandatory_tour_frequency_alternatives.csv | 4 +- 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8638e4b..d8160ea 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -46,6 +46,62 @@ "-o", "outputs/estimation_skats", ] }, + { + "name": "LCOG Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/lcog/data_full", + "-o", "outputs/estimation_lcog", + ] + }, + { + "name": "CALM Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/calm/data_full", + "-o", "outputs/estimation_calm", + ] + }, + { + "name": "Bend Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/bend/data_full", + "-o", "outputs/estimation_bend", + ] + }, + { + "name": "Rogue Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/rogue/data_full", + "-o", "outputs/rogue", + ] + }, { "name": "Run Cropped Example", "type": "debugpy", diff --git a/resident/configs/non_mandatory_tour_frequency_alternatives.csv b/resident/configs/non_mandatory_tour_frequency_alternatives.csv index a44fba3..95e5936 100644 --- a/resident/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/resident/configs/non_mandatory_tour_frequency_alternatives.csv @@ -199,4 +199,6 @@ escort,shopping,othmaint,eatout,social,othdiscr 2,2,1,0,1,0 1,2,1,1,1,0 2,1,1,0,1,1 -2,1,2,1,0,0 \ No newline at end of file +2,1,2,1,0,0 +2,0,2,1,1,0 +2,1,1,1,1,0 \ No newline at end of file